1

我无法让 reprex 运行。这是控制台会话的副本:

> library(reprex)
> y <- 1:4
> mean(y)
[1] 2.5
> reprex()
Error in file(con, "w") : cannot open the connection
In addition: Warning message:
In file(con, "w") :
  cannot open file 'C:/Users/Richard.R': Permission denied

请注意,这是在我没有管理员权限的机器上。Richard也不是我在这台机器上的用户名,后面Richard.是我的姓氏。

如何让 reprex 正常运行?

4

1 回答 1

1

这看起来是个permission问题。您可能无权write访问当前目录。您可以使用以下命令查看当前目录getwd()

请将您当前的具有setwd()功能的目录更改为您有权write访问的任何其他目录,然后重试。

于 2019-03-13T19:22:41.960 回答