我想在列中看到不同的项目,但是我收到以下错误:
rcaller.exception.RCallerParseException:找不到变量data_item
以下是我使用过的代码:
code.addRCode("data<-read.csv(x)");/*x is the path of the file*/
code.addRCode("data_item=unique(unlist(data$ITEM,use.names=FALSE))");
caller.setRCode(code);
caller.runAndReturnResult("data_item");
String []s=caller.getParser().getAsStringArray("data_item");