a. 在R i386 3.5.1程序中install.package(“ggplot2”)
不知道是网络问题还是什么问题,有时候失败,有时候成功,但是安装ggplot是绝对不行,说ggplot不适用3.5.1
b. 在Rstudio中安装install.package(“ggplot2”),即使最后显示下载了程序包,但是运行语句依然报错
c. 试图去寻找低版本的R,但是没有64位的,而且不知道该下哪一个,这个方法于是被放弃
d. 安装install.packages(“installer”) 安装这个程序包解决了缺stringi的问题,但依然不能使用ggplot
【https://blog.csdn.net/zhuangailing/article/details/80157451】
e. 知乎上“R 3.5.0 版本后安装某些包失败的原因与解决方法”,下载了Rtools, 但我并没有用,而且我选择下载的最新版本并不能安装
【https://zhuanlan.zhihu.com/p/36304161】
f. 按照如下图的方法,我安装了tidyverse之后依然不能使用ggplot2。于是先install了devtools之后再devtools::install_github("tidyverse/ggplot2")
终于可以使用ggplot()功能
【https://www.jianshu.com/p/03719d7c207f】
g. 加载成功之后,我写语句,总是报错称内存不够1.7G,我百度了下这个问题,查看了自己的电脑内存memory.limit(),数值为7000多,所以肯定不是电脑内存问题,于是关掉Rstudio,重新打开,就正常了
【http://bbs.pinggu.org/thread-3682816-1-1.html】
总结
先install了devtools之后再devtools::install_github("tidyverse/ggplot2")
就可以使用ggplot()功能了
网友评论