最佳答案
我正在纠结于不同的 R 可执行程序。在批处理文件中运行命令行时,R.exe (带或不带 CMD BATCH 选项)、 Rcmd.exe、 Rscript.exe 和 Rterm.exe 之间的区别是什么?
这两者的区别是什么:
R.exe --no-environ --no-save < "c:\temp\R\test.R" > "c:\temp\R\out.txt" 2>&1
还有
R.exe CMD BATCH --no-environ --no-save "c:\temp\R\test.R" "c:\temp\R\out.txt"
输出没有差别。
我在3079页的 R 参考手册中找不到任何关于 Rcmd.exe 和 Rscript.exe 的内容。
顺便说一下: 我用的是 Windows。