Package weka.attributeSelection
Class CorrelationAttributeEval
java.lang.Object
weka.attributeSelection.ASEvaluation
weka.attributeSelection.CorrelationAttributeEval
- All Implemented Interfaces:
Serializable
,AttributeEvaluator
,CapabilitiesHandler
,CapabilitiesIgnorer
,CommandlineRunnable
,OptionHandler
,RevisionHandler
public class CorrelationAttributeEval
extends ASEvaluation
implements AttributeEvaluator, OptionHandler
CorrelationAttributeEval :
Evaluates the worth of an attribute by measuring the correlation (Pearson's) between it and the class.
Nominal attributes are considered on a value by value basis by treating each value as an indicator. An overall correlation for a nominal attribute is arrived at via a weighted average.
Valid options are:
Evaluates the worth of an attribute by measuring the correlation (Pearson's) between it and the class.
Nominal attributes are considered on a value by value basis by treating each value as an indicator. An overall correlation for a nominal attribute is arrived at via a weighted average.
Valid options are:
-D Output detailed info for nominal attributes
- Version:
- $Revision: 15519 $
- Author:
- Mark Hall (mhall{[at]}pentaho{[dot]}com)
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
buildEvaluator
(Instances data) Initializes an information gain attribute evaluator.double
evaluateAttribute
(int attribute) Evaluates an individual attribute by measuring the correlation (Pearson's) between it and the class.Returns the capabilities of this evaluator.String[]
Gets the current settings of WrapperSubsetEval.boolean
Get whether to output per-value correlation for nominal attributesReturns the revision string.Returns a string describing this attribute evaluatorReturns an enumeration describing the available options.static void
Main method for testing this class.Returns the tip text for this propertyvoid
setOptions
(String[] options) Parses a given list of options.void
setOutputDetailedInfo
(boolean d) Set whether to output per-value correlation for nominal attributestoString()
Describe the attribute evaluatorMethods inherited from class weka.attributeSelection.ASEvaluation
clean, doNotCheckCapabilitiesTipText, forName, getDoNotCheckCapabilities, makeCopies, postExecution, postProcess, preExecution, run, runEvaluator, setDoNotCheckCapabilities
-
Constructor Details
-
CorrelationAttributeEval
public CorrelationAttributeEval()
-
-
Method Details
-
globalInfo
Returns a string describing this attribute evaluator- Returns:
- a description of the evaluator suitable for displaying in the explorer/experimenter gui
-
getCapabilities
Returns the capabilities of this evaluator.- Specified by:
getCapabilities
in interfaceCapabilitiesHandler
- Overrides:
getCapabilities
in classASEvaluation
- Returns:
- the capabilities of this evaluator
- See Also:
-
listOptions
Returns an enumeration describing the available options.- Specified by:
listOptions
in interfaceOptionHandler
- Overrides:
listOptions
in classASEvaluation
- Returns:
- an enumeration of all the available options.
-
setOptions
Parses a given list of options. Valid options are:-D Output detailed info for nominal attributes
- Specified by:
setOptions
in interfaceOptionHandler
- Overrides:
setOptions
in classASEvaluation
- Parameters:
options
- the list of options as an array of strings- Throws:
Exception
- if an option is not supported
-
getOptions
Gets the current settings of WrapperSubsetEval.- Specified by:
getOptions
in interfaceOptionHandler
- Overrides:
getOptions
in classASEvaluation
- Returns:
- an array of strings suitable for passing to setOptions()
-
outputDetailedInfoTipText
Returns the tip text for this property- Returns:
- tip text for this property suitable for displaying in the explorer/experimenter gui
-
setOutputDetailedInfo
public void setOutputDetailedInfo(boolean d) Set whether to output per-value correlation for nominal attributes- Parameters:
d
- true if detailed (per-value) correlation is to be output for nominal attributes
-
getOutputDetailedInfo
public boolean getOutputDetailedInfo()Get whether to output per-value correlation for nominal attributes- Returns:
- true if detailed (per-value) correlation is to be output for nominal attributes
-
evaluateAttribute
Evaluates an individual attribute by measuring the correlation (Pearson's) between it and the class. Nominal attributes are considered on a value by value basis by treating each value as an indicator. An overall correlation for a nominal attribute is arrived at via a weighted average.- Specified by:
evaluateAttribute
in interfaceAttributeEvaluator
- Parameters:
attribute
- the index of the attribute to be evaluated- Returns:
- the correlation
- Throws:
Exception
- if the attribute could not be evaluated
-
toString
Describe the attribute evaluator -
buildEvaluator
Initializes an information gain attribute evaluator. Replaces missing values with means/modes; Deletes instances with missing class values.- Specified by:
buildEvaluator
in classASEvaluation
- Parameters:
data
- set of instances serving as training data- Throws:
Exception
- if the evaluator has not been generated successfully
-
getRevision
Returns the revision string.- Specified by:
getRevision
in interfaceRevisionHandler
- Overrides:
getRevision
in classASEvaluation
- Returns:
- the revision
-
main
Main method for testing this class.- Parameters:
args
- the options
-