setRscriptExecutable()应该指向什么文件路径?

我已经在Google上搜索了,但是与我需要的东西无关。

最佳答案

Windows上是C:\\Program Files\\R\\R-3.0.2\\bin\\Rscript.exe,在Linux/MacOS上是/usr/bin/Rscript

我认为最好的设置方法就像示例中那样:

RCaller caller = new RCaller();
Globals.detect_current_rscript();
caller.setRscriptExecutable(Globals.Rscript_current);

08-16 04:40