This is what I usually do to select an attribute range in 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);
Now, I need to remove attribute field 4 as well, how can I specify this in options[1] ?
thanks
The Remove API describes the attributes to be removed as a comma-separated list, so I think you should use:
options[1] = "1-2,4";
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With