Class Statistics
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.flow.transformer.wekarepeatedcrossvalidationoutput.AbstractWekaRepeatedCrossValidationOutput<adams.data.spreadsheet.SpreadSheet>
-
- adams.flow.transformer.wekarepeatedcrossvalidationoutput.Statistics
-
- All Implemented Interfaces:
adams.core.Destroyable,adams.core.GlobalInfoSupporter,adams.core.logging.LoggingLevelHandler,adams.core.logging.LoggingSupporter,adams.core.option.OptionHandler,adams.core.QuickInfoSupporter,adams.core.SizeOfHandler,Serializable
public class Statistics extends AbstractWekaRepeatedCrossValidationOutput<adams.data.spreadsheet.SpreadSheet>
Generates mean/stddev for the specified statistics.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected WekaLabelIndexm_ClassIndexthe index of the class label.protected EvaluationStatistic[]m_Statisticsthe statistics to output.
-
Constructor Summary
Constructors Constructor Description Statistics()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringclassIndexTipText()Returns the tip text for this property.voiddefineOptions()Adds options to the internal list of options.protected adams.data.spreadsheet.SpreadSheetdoGenerateOutput(WekaEvaluationContainer[] conts)Generates the data.Classgenerates()Returns the class that it generates.WekaLabelIndexgetClassIndex()Returns the current index of class label (1-based).StringgetQuickInfo()Returns a quick info about the object, which can be displayed in the GUI.EvaluationStatistic[]getStatistics()Returns the statistics to output.StringglobalInfo()Returns a string describing the object.Stringhandles(WekaEvaluationContainer[] conts)Checks whether the cross-validation results can be processed.voidsetClassIndex(WekaLabelIndex value)Sets the index of class label index (1-based).voidsetStatistics(EvaluationStatistic[] value)Sets the statistics to output.StringstatisticsTipText()Returns the tip text for this property.-
Methods inherited from class adams.flow.transformer.wekarepeatedcrossvalidationoutput.AbstractWekaRepeatedCrossValidationOutput
generateOutput
-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, destroy, finishInit, getDefaultLoggingLevel, getOptionManager, initialize, loggingLevelTipText, newOptionManager, reset, setLoggingLevel, toCommandLine, toString
-
Methods inherited from class adams.core.logging.LoggingObject
configureLogger, getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
-
-
-
Field Detail
-
m_Statistics
protected EvaluationStatistic[] m_Statistics
the statistics to output.
-
m_ClassIndex
protected WekaLabelIndex m_ClassIndex
the index of the class label.
-
-
Method Detail
-
globalInfo
public String globalInfo()
Returns a string describing the object.- Specified by:
globalInfoin interfaceadams.core.GlobalInfoSupporter- Specified by:
globalInfoin classadams.core.option.AbstractOptionHandler- Returns:
- a description suitable for displaying in the gui
-
defineOptions
public void defineOptions()
Adds options to the internal list of options.- Specified by:
defineOptionsin interfaceadams.core.option.OptionHandler- Overrides:
defineOptionsin classadams.core.option.AbstractOptionHandler
-
setStatistics
public void setStatistics(EvaluationStatistic[] value)
Sets the statistics to output.- Parameters:
value- the statistics
-
getStatistics
public EvaluationStatistic[] getStatistics()
Returns the statistics to output.- Returns:
- the statistics
-
statisticsTipText
public String statisticsTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setClassIndex
public void setClassIndex(WekaLabelIndex value)
Sets the index of class label index (1-based).- Parameters:
value- the label index
-
getClassIndex
public WekaLabelIndex getClassIndex()
Returns the current index of class label (1-based).- Returns:
- the label index
-
classIndexTipText
public String classIndexTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
getQuickInfo
public String getQuickInfo()
Returns a quick info about the object, which can be displayed in the GUI.- Specified by:
getQuickInfoin interfaceadams.core.QuickInfoSupporter- Overrides:
getQuickInfoin classAbstractWekaRepeatedCrossValidationOutput<adams.data.spreadsheet.SpreadSheet>- Returns:
- null if no info available, otherwise short string
-
generates
public Class generates()
Returns the class that it generates.- Specified by:
generatesin classAbstractWekaRepeatedCrossValidationOutput<adams.data.spreadsheet.SpreadSheet>- Returns:
- the class
-
handles
public String handles(WekaEvaluationContainer[] conts)
Checks whether the cross-validation results can be processed.- Specified by:
handlesin classAbstractWekaRepeatedCrossValidationOutput<adams.data.spreadsheet.SpreadSheet>- Parameters:
conts- the containers to check- Returns:
- null if the data can be processed, otherwise an error message
-
doGenerateOutput
protected adams.data.spreadsheet.SpreadSheet doGenerateOutput(WekaEvaluationContainer[] conts)
Generates the data.- Specified by:
doGenerateOutputin classAbstractWekaRepeatedCrossValidationOutput<adams.data.spreadsheet.SpreadSheet>- Parameters:
conts- the containers to process- Returns:
- the generated data
-
-