5
這是我平時做的選擇秧雞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以及一個屬性範圍,我怎麼能在選項[1]指定此?
感謝