Example usage for Java weka.filters.unsupervised.attribute Discretize fields, constructors, methods, implement or subclass
The text is from its open source code.
Discretize() Constructor - initialises the filter | |
Discretize(String cols) Another constructor, sets the attribute indices immediately |
int | getBins() Gets the number of bins numeric attributes will be divided into |
double[] | getCutPoints(int attributeIndex) Gets the cut points for an attribute |
boolean | input(Instance instance) Input an instance for filtering. |
void | setBins(int numBins) Sets the number of bins to divide each selected numeric attribute into |
boolean | setInputFormat(Instances instanceInfo) Sets the format of the input instances. |
void | setOptions(String[] options) Parses a given list of options. |
void | setUseEqualFrequency(boolean newUseEqualFrequency) Set the value of UseEqualFrequency. |