Displaying 1 result from an estimated 1 matches for "rexpraw".
Did you mean:
redraw
2008 Nov 30
1
Rserve and creating a list of lists
Hello,
I have some code which generates lattice objects. The function
recieves serialized forms of the lattice objects which it then
unserializes and then adds to an ArrayList<REXP>.
REXPRaw rser = new REXPRaw( target ); //target contains the raw
serialized forms of lattice objects
rconn.assign("temp",rser);
REXP ret = rconn.eval("invisible(unserialize(temp))"); (1)
rexpArr.add(ret);
RList rlist = new RList(rexpArr);
REXPList rl = new REXPList(rlist);
The...