Mac 上的 R x11 无法运行 - 或者运行异常

发布于 2024-11-04 10:41:45 字数 183 浏览 3 评论 0原文

我在 Test.r 文件中有一个简单的 R 脚本:

x11()
plot(1,1)

从终端输入“Rscript Test.r”,x11 打开并快速闪烁绘图(在 (1,1) 处有一个点),然后快速关闭窗口,但 x11 仍然开放。

如何保持情节开放?为什么它离开得这么快?

I have a simple R script in a file Test.r:

x11()
plot(1,1)

From the terminal, I type "Rscript Test.r" and x11 opens and quickly flashes the plot with a point at (1,1), and then quickly closes the window, however x11 remains open.

How do I keep the plot open? Why does it leave so quickly?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

骄兵必败 2024-11-11 10:41:45

当进程 R 终止时,R 将关闭设备(就像脚本完成时一样)。更好的方法是:

pdf("file.pdf")
plot(1,1)
dev.off()

然后当您运行 Rscript 时,它会将文件保存在那里。否则,您必须让 R 保持活动状态,这实际上并不是它在脚本中运行的方式。

R will close the device when the process R dies (as it does when the script completes). The better way to do this is:

pdf("file.pdf")
plot(1,1)
dev.off()

then when you run through the Rscript it will save the file there. Otherwise, you'll have to have R stay alive which isn't really how it should be run in a script.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文