Displaying 2 results from an estimated 2 matches for "rwriteconsole".
Did you mean:
writeconsole
2006 Jul 19
1
ASCII dump from an REXP (JRI)
Hi Simon,
Thanks so much for your help. Your advice has been taken to heart. I now
pass in blocks of 100,000 records, and it does 100,000 predictions in
seconds and returns a logical vector with the predictions to an int array.
It works like a charm!
I want to reference what we were talking about earlier. Let?s say we
evaluate an R expression. Is there a way to just print, verbatim, what R
2009 Mar 30
0
Problem in S4 object displaying from within a Java application using JRI
...2)", true);
} catch (Exception e) {
System.out.println("EX:" + e);
e.printStackTrace();
}
}
}
/*-------------------------------------------------------------------------*/
class TextConsole implements RMainLoopCallbacks {
public void rWriteConsole(Rengine re, String text, int oType) {
System.out.print(text);
}
public void rBusy(Rengine re, int which) {
System.out.println("rBusy(" + which + ")");
}
public String rReadConsole(Rengine re, String prompt, int addToHistory)
{
System.ou...