在 R 中使用 ggplot 函数错误:找不到函数 ggplot
我已经安装了 ggplot 和 ggplot2 及其依赖项,但无法使用该函数 ggplot;每当我尝试使用它时我都会得到
ggplot 中的错误...找不到函数“ggplot”
I have installed ggplot and ggplot2 and their dependencies, but I cannot use the function ggplot
; whenever I try to use it I get
Error in ggplot ... could not find function "ggplot"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
即使在安装了软件包之后,每次加载 R 时都必须加载一个软件包。
这个问题在 r-faq 中得到了全面的回答:
错误:在 R 中找不到函数...
Try:
Even after installing a package, you have to load a package each time you load R.
This question is answered comprehensively in the r-faq:
Error: could not find function ... in R