列内の個別の項目を表示したいのですが、次のエラーが発生します。
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");