How I can load a R script into JRI and execute fro

2019-06-22 14:43发布

问题:

I'm using JRI to execute R from Java and I saw that JRI use the eval() method to execute the R commands. I have one R script for execution.

How I can load this script in JRI and execute it?

回答1:

You can run an entire script with the R command source()



标签: java r command jri