在此代码中,变量xx
返回0而不是20,不应该计算它并且它的值保持在evals之间吗?
String[] Rargs = {"--vanilla"};
Rengine re = new Rengine(Rargs, false, null);
if (!re.waitForR()) {
System.out.println("Cannot load R");
return;
}
re.eval("xx = 0");
for (int i=0; i<20; i++) {
re.eval("xx = xx + 1");
}
int xx = (re.eval("xx")).asInt();
System.out.println("xx="+xx);
结果如下:
xx=0
答案 0 :(得分:0)
这是答案,需要使用asDouble()
:
double xx = (re.eval("xx")).asDouble();