为什么以R脚本运行时代码可以工作,而以reprex运行时却显示错误?

时间:2020-03-12 04:35:47

标签: r ggplot2 reprex

ggplot(data = mpg) + geom_point(mapping = aes(x = displ, y = hwy))
#> Error in ggplot(data = mpg): could not find function "ggplot"

ggplot(mpg, aes(x=displ,y=hwy))+geom_point()
#> Error in ggplot(mpg, aes(x = displ, y = hwy)): could not find function "ggplot"

我确保已经使用library(ggplot2)加载了ggplot2软件包。当我在R脚本中运行这两行代码时,它确实起作用,并且可以看到在查看器中生成的图。但是,当我使用reprex运行这两个代码行时,它会显示如上的错误(我这样做是因为我想使用reprex运行它们并将结果粘贴到堆栈溢出中,以询问有关两个代码行之间的区别的问题) 。我想知道为什么它在reprex中显示错误。

1 个答案:

答案 0 :(得分:1)

您如何在提交给reprex的代码行中导入library(ggplot2); ggplot(data = mpg) + geom_point(mapping = aes(x = displ, y = hwy)) ?即

iframe

也许正在发生的事情是提交给reprex的代码在其他地方执行,因此您需要在其中导入包。