我正在为不同的 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。