Class IndividualRows
- java.lang.Object
-
- weka.filters.unsupervised.instance.multirowprocessor.AbstractMultiRowProcessorPlugin
-
- weka.filters.unsupervised.instance.multirowprocessor.selection.AbstractRowSelection
-
- weka.filters.unsupervised.instance.multirowprocessor.selection.IndividualRows
-
- All Implemented Interfaces:
adams.core.GlobalInfoSupporter
,Serializable
,weka.core.OptionHandler
public class IndividualRows extends AbstractRowSelection
Just selects each row by itself.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class weka.filters.unsupervised.instance.multirowprocessor.AbstractMultiRowProcessorPlugin
DEBUG, m_Debug
-
-
Constructor Summary
Constructors Constructor Description IndividualRows()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected List<int[]>
doSelectRows(weka.core.Instances data)
Returns the list of row indices generated from the data.String
globalInfo()
Returns a string describing the row selection scheme.-
Methods inherited from class weka.filters.unsupervised.instance.multirowprocessor.selection.AbstractRowSelection
check, selectRows
-
Methods inherited from class weka.filters.unsupervised.instance.multirowprocessor.AbstractMultiRowProcessorPlugin
debugMsg, debugTipText, getDebug, getOptions, listOptions, reset, setDebug, setOptions
-
-
-
-
Method Detail
-
globalInfo
public String globalInfo()
Returns a string describing the row selection scheme.- Specified by:
globalInfo
in interfaceadams.core.GlobalInfoSupporter
- Specified by:
globalInfo
in classAbstractMultiRowProcessorPlugin
- Returns:
- a description suitable for displaying in the explorer/experimenter gui
-
doSelectRows
protected List<int[]> doSelectRows(weka.core.Instances data) throws Exception
Returns the list of row indices generated from the data.- Specified by:
doSelectRows
in classAbstractRowSelection
- Parameters:
data
- the data to generate row selections from- Returns:
- the list of selections
- Throws:
Exception
- if checks or selection failed
-
-