这个R包的主页
https://github.com/datacamp/ggdc
这个是对ggplot2作图主题进行补充的一个R包,有比较好看的现成可用的主题
通常在github主页上的R包的安装命令是
devtools::install_github("datacamp/ggdc")
遇到报错信息
Error: package or namespace load failed for 'ggdc':
.onAttach failed in attachNamespace() for 'ggdc', details:
call: list.files(font_dir_system)
error: object 'font_dir_system' not found
Error: loading failed
Execution halted
*** arch - x64
Error: package or namespace load failed for 'ggdc':
.onAttach failed in attachNamespace() for 'ggdc', details:
call: list.files(font_dir_system)
error: object 'font_dir_system' not found
Error: loading failed
Execution halted
ERROR: loading failed for 'i386', 'x64'
* removing 'D:/Biotools/R/R-4.1.0/library/ggdc'
某个对象找不到
猜测是这个包的代码有点小错误,在github主页上对应着去搜font_dir_system
这个对象
在lato.R这个文件里
应该把 font_dir_system
中的_system
都去掉,我把这个R包fork到我自己的github主页,然后编辑lato.R这个文件
重新运行 安装命令
devtools::install_github("NotebookOFXiaoMing/ggdc")
如果你要安装这个R包,也可以直接运行上面这个命令