Displaying 1 result from an estimated 1 matches for "r2jtest".
Did you mean:
jtest
2002 Jan 19
0
Troubles in SJava
OS : Win95
R Version : 1.4.0
JDK Version : 1.3.0
Hi, R-statisticians all over the world.
I'm trying to handling R objects in the Java code as follows:
[c:\myjava\R2JTest.java]
import org.omegahat.R.Java.*;
class R2JTest {
public static void main(String args[]) {
REvaluator e = new REvaluator();
Object val = e.eval("objects()");
int i;
if (val != null) {
String[] objs = (String[])val;...