我有一些依赖 ggplot2 的软件包,并且在运行R CMD check coefplot_1.1.7.tar.gz
.
我收到以下错误。
* checking whether the package can be loaded ... ERROR
Loading required package: ggplot2
Error: package 'ggplot2' could not be loaded
In addition: Warning message:
In library(pkg, character.only = TRUE, logical.return = TRUE, lib.loc = lib.loc) :
there is no package called 'ggplot2'
Execution halted
It looks like this package has a loading problem: see the messages for
details.
我所有依赖 ggplot2 的包都会出现此消息,而不仅仅是这个。
它构建、安装和工作都很好,但由于某种原因检查失败。
在 R 2.14.2 的 Rprofile.site 文件中,我的 .libPaths 参数发生了一些奇怪的事情,所以我重新安装了 R 2.15.0,但仍然遇到这个问题。
这是 ggplot 的一个已知问题还是我无意中开始做错了什么?
编辑在我的 Rgui(通过 RStudio).libPaths()
返回
[1] "C:/Users/Jared/Documents/R/win-library/2.15"
[2] "C:/Program Files/R/R-2.15.0/library"
[3] "C:/Program Files/RStudio/R/library"
从 cmd 提示符返回 R 终端时
[1] "C:/Users/Jared/Documents/R/win-library/2.15"
[2] "C:/Program Files/R/R-2.15.0/library"
并通过 GitBash (MINGW32) 返回 R 终端
[1] "C:/Program Files/R/R-2.15.0/library"
我确定这导致了一些问题?也许我需要通过 Rprofile.site: 来解决这个问题.libPaths("~/R/win-library/2.15")
?