【发布时间】:2011-08-27 20:54:25
【问题描述】:
这是我通常在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] 中指定?
谢谢
【问题讨论】:
标签: machine-learning weka classification