Displaying 2 results from an estimated 2 matches for "rvariablenam".
Did you mean:
rvariablename
2010 Mar 24
1
R and/or REngine kills Java
...va code, the R code, and the Java VM error:
++++++++++++++++ START JAVA CODE ++++++++++++++++++
/** Helper method */
private static void eval(Rengine r, String s) {
r.eval(s, false);
}
/** Assigns the given java value to the given R variable name */
private static void assign(Rengine r, String rVariableName, String javaValue) {
r.assign(rVariableName, javaValue);
}
public void run() throws Exception {
String filepath = this.path;
if (filepath != null) {
File rFile = new File(filepath );
if (rFile.exists()) { // run R script
// start R engine
if (!Rengine.versionCheck()) {...
2010 Mar 24
0
R-help ordinal regression
...++++++++++ START JAVA CODE ++++++++++++++++++
>
> /** Helper method */
> private static void eval(Rengine r, String s) {
> ??? r.eval(s, false);
> }
> ???
> /** Assigns the given java value to the given R variable
> name */
> private static void assign(Rengine r, String rVariableName,
> String javaValue) {
> ??? r.assign(rVariableName, javaValue);
> }
>
> public void run() throws Exception {
> ??? ??? String filepath =
> this.path;
> ??? ???
> ??? ??? if (filepath != null)
> {
> ??? ??? ???
> File rFile = new File(filepath );
> ??? ???...