我有一个小的shell脚本(bash),它运行一个生成一个绘图作为输出的R脚本。一切工作正常,但在情节呈现后,立即停止。有没有办法保持R会话活动,直到绘图窗口关闭。
shell脚本。
#!/bin/bash R --slave --vanilla < myscript.r
和R脚本。
daq = read.table(file('mydata.dat')) X11() pairs(daq) //R Completes this and then exits immediately.
提前感谢任何帮助!
如果您使用Rscript命令(更适合此目的),则运行如下:
原文链接:https://www.f2er.com/bash/387656.html#!/usr/bin/Rscript daq = read.table(file('mydata.dat')) X11() pairs(daq) message("Press Return To Continue") invisible(readLines("stdin",n=1))
确保在myscript.r上设置执行权限,然后运行如下:
/path/to/myscript.r
或没有shebang:
Rscript /path/to/myscript.r