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.
使用 JRI 分配值时,我遇到了一种奇怪的行为。只是这个小例子:
REXP a = re.eval("a<-cbind(c(1,2))"); REXP out1 = re.eval("a[1,]"); <--- Returns a correct REXP object re.assign("a",a); REXP out2 = re.eval("a[1,]"); <--- Returns null (out2=null)
为什么它返回null?有什么解决方法吗?
虽然 assign 方法可以获取 REXP 值作为参数,但 R 可能没有识别它,将“a”转换为 double
REXP in = re.eval("a[1,]"); double test = in.asDouble(); re.assign("test",test);