这是我通常在weka中选择属性范围的方法
String[] options = new String[2];
options[0] = "-R"; // "range"
options[1] = "1-2";
Remove remove = new Remove(); // new instance of filter
remove.setOptions(options);
现在,我还需要删除属性字段 4,如何在 options[1] 中指定它?
谢谢