//Get model name out of file
this.engine.eval("modelname<-load('"+ this.modelFile.getFile().getPath());
String modelName = this.engine.eval("modelname").asString();
REXP rResult = this.engine.eval("predict(" + modelName + "," + rParamaterAssignString);
if(rResult == null || rResult.getType() == REXP.XT_NULL) {
result.addError("Empty R result, model has an error");
} else {
Map<String, Object> tempPredictions = new HashMap<String, Object>();
this.processRResult(rResult, tempPredictions, "result");
}