Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 java 和“RServe”从 R 中获取数据。但是在 R 完成执行以下 eval 函数的过程之前,我无法获取数据。
如果在 R 中执行需要很长时间,我无法确认处理状态。您能否展示从 R 获取处理信息的方法。
RConnection c = new RConnection(); REXP x = c.eval("R.version.string"); System.out.println(x.asString());
提前致谢。