|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--weka.filters.Filter | +--weka.filters.InstanceFilter
Filters instances according to the value of an attribute.
Valid filter-specific options are:
-C num
Choose attribute to be used for selection (default last).
-S num
Numeric value to be used for selection on numeric attribute.
Instances with values smaller than given value will be selected.
(default 0)
-L index1,index2-index4,...
Range of label indices to be used for selection on nominal attribute.
First and last are valid indexes. (default all values)
-M
Missing values count as a match. This setting is independent of
the -V option. (default missing values don't match)
-V
Invert matching sense.
-H
When selecting on nominal attributes, removes header references to
excluded values.
Field Summary | |
protected int |
m_Attribute
Stores which attribute to be used for filtering |
protected int |
m_AttributeSet
Stores the attribute setting |
protected boolean |
m_Inverse
Inverse of test to be used? |
protected boolean |
m_MatchMissingValues
True if missing values should count as a match |
protected boolean |
m_ModifyHeader
Modify header for nominal attributes? |
protected int[] |
m_NominalMapping
If m_ModifyHeader, stores a mapping from old to new indexes |
protected double |
m_Value
Stores which value of a numeric attribute is to be used for filtering. |
protected Range |
m_Values
Stores which values of nominal attribute are to be used for filtering. |
Fields inherited from class weka.filters.Filter |
m_NewBatch |
Constructor Summary | |
InstanceFilter()
Default constructor |
Method Summary | |
int |
getAttributeIndex()
Get the attribute to be used for selection (-1 for last) |
boolean |
getInvertSelection()
Get whether the supplied columns are to be removed or kept |
boolean |
getMatchMissingValues()
Gets whether missing values are counted as a match. |
boolean |
getModifyHeader()
Gets whether the header will be modified when selecting on nominal attributes. |
java.lang.String |
getNominalIndices()
Get the set of nominal value indices that will be used for selection |
java.lang.String[] |
getOptions()
Gets the current settings of the filter. |
double |
getSplitPoint()
Get the split point used for numeric selection |
boolean |
input(Instance instance)
Input an instance for filtering. |
boolean |
isNominal()
Returns true if selection attribute is nominal. |
boolean |
isNumeric()
Returns true if selection attribute is numeric. |
java.util.Enumeration |
listOptions()
Returns an enumeration describing the available options |
static void |
main(java.lang.String[] argv)
Main method for testing this class. |
void |
setAttributeIndex(int attribute)
Sets attribute to be used for selection |
boolean |
setInputFormat(Instances instanceInfo)
Sets the format of the input instances. |
void |
setInvertSelection(boolean invert)
Set whether selected values should be removed or kept. |
void |
setMatchMissingValues(boolean newMatchMissingValues)
Sets whether missing values are counted as a match. |
void |
setModifyHeader(boolean newModifyHeader)
Sets whether the header will be modified when selecting on nominal attributes. |
void |
setNominalIndices(java.lang.String rangeList)
Set which nominal labels are to be included in the selection. |
void |
setNominalIndicesArr(int[] values)
Set which values of a nominal attribute are to be used for selection. |
void |
setOptions(java.lang.String[] options)
Parses a given list of options. |
void |
setSplitPoint(double value)
Split point to be used for selection on numeric attribute. |
Methods inherited from class weka.filters.Filter |
batchFilterFile, batchFinished, bufferInput, copyStringValues, copyStringValues, filterFile, flushInput, getInputFormat, getInputStringIndex, getOutputFormat, getOutputStringIndex, getStringIndices, inputFormat, isOutputFormatDefined, numPendingOutput, output, outputFormat, outputFormatPeek, outputPeek, push, resetQueue, setOutputFormat, useFilter |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
protected int m_AttributeSet
protected int m_Attribute
protected Range m_Values
protected double m_Value
protected boolean m_Inverse
protected boolean m_MatchMissingValues
protected boolean m_ModifyHeader
protected int[] m_NominalMapping
Constructor Detail |
public InstanceFilter()
Method Detail |
public java.util.Enumeration listOptions()
listOptions
in interface OptionHandler
public void setOptions(java.lang.String[] options) throws java.lang.Exception
-C num
Choose attribute to be used for selection (default last).
-S num
Numeric value to be used for selection on numeric attribute.
Instances with values smaller than given value will be selected.
(default 0)
-L index1,index2-index4,...
Range of label indices to be used for selection on nominal attribute.
First and last are valid indexes. (default all values)
-M
Missing values count as a match. This setting is independent of
the -V option. (default missing values don't match)
-V
Invert matching sense.
-H
When selecting on nominal attributes, removes header references to
excluded values.
setOptions
in interface OptionHandler
options
- the list of options as an array of stringsjava.lang.Exception
- if an option is not supportedpublic java.lang.String[] getOptions()
getOptions
in interface OptionHandler
public boolean setInputFormat(Instances instanceInfo) throws java.lang.Exception
setInputFormat
in class Filter
instanceInfo
- an Instances object containing the input instance
structure (any instances contained in the object are ignored - only the
structure is required).UnsupportedAttributeTypeException
- if the specified attribute
is neither numeric or nominal.public boolean input(Instance instance)
input
in class Filter
instance
- the input instancejava.lang.IllegalStateException
- if no input format has been set.public boolean isNominal()
public boolean isNumeric()
public boolean getModifyHeader()
public void setModifyHeader(boolean newModifyHeader)
newModifyHeader
- true if so.public int getAttributeIndex()
public void setAttributeIndex(int attribute)
attribute
- the attribute's index (-1 for last);public double getSplitPoint()
public void setSplitPoint(double value)
value
- the split pointpublic boolean getMatchMissingValues()
public void setMatchMissingValues(boolean newMatchMissingValues)
newMatchMissingValues
- true if missing values are counted as a match.public boolean getInvertSelection()
public void setInvertSelection(boolean invert)
invert
- the new invert settingpublic java.lang.String getNominalIndices()
public void setNominalIndices(java.lang.String rangeList)
rangeList
- a string representing the list of nominal indices.
eg: first-3,5,6-lastInvalidArgumentException
- if an invalid range list is suppliedpublic void setNominalIndicesArr(int[] values)
values
- an array containing indexes of values to be
used for selectionInvalidArgumentException
- if an invalid set of ranges is suppliedpublic static void main(java.lang.String[] argv)
argv
- should contain arguments to the filter:
use -h for help
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |