无法在linux mint 15 32bits上安装R软件包

时间:2014-05-10 20:49:31

标签: linux

我正在尝试安装de ggplot库,因此我使用此命令

 install.packages('ggplot2', dependencies = TRUE)

当我写库(ggplot2)时,没有任何事情发生错误信息,所以我说安装过程有效,但是当我尝试使用gplot函数时,我得到了这个:

 Error: could not find function "gplot"

我尝试以超级用户身份打开R Studio并重新安装,并尝试从tar.gz包中安装库,但是我总是得到完全相同的错误。

提前致谢

2 个答案:

答案 0 :(得分:1)

实际上功能是“qplot”而不是gplot。

参考访问: https://cran.r-project.org/web/packages/ggplot2/ggplot2.pdf

然后转到第145页并查看qplot(快速绘图):

用法:

qplot(x, y = NULL, ..., data, facets = NULL, margins = FALSE,
geom = "auto", xlim = c(NA, NA), ylim = c(NA, NA), log = "",
main = NULL, xlab = deparse(substitute(x)),
ylab = deparse(substitute(y)), asp = NA, stat = NULL, position = NULL)

答案 1 :(得分:0)

也许您可以尝试“ggplot()”而不是“gplot()”