Class TextStatistics
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.gui.tools.wekainvestigator.output.AbstractOutputGenerator<ResultItem>
-
- adams.gui.tools.wekainvestigator.tab.classifytab.output.AbstractOutputGenerator
-
- adams.gui.tools.wekainvestigator.tab.classifytab.output.TextStatistics
-
- All Implemented Interfaces:
Destroyable,GlobalInfoSupporter,LoggingLevelHandler,LoggingSupporter,OptionHandler,SizeOfHandler,Serializable
public class TextStatistics extends AbstractOutputGenerator
Generates basic text statistic.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected booleanm_ClassDetailswhether to print the class details as well.protected booleanm_ComplexityStatisticswhether to print the complexity statistics as well.protected booleanm_ConfusionMatrixwhether to print the confusion matrix as well.protected booleanm_RunInformationwhether to print the run information as well.-
Fields inherited from class adams.core.option.AbstractOptionHandler
m_OptionManager
-
Fields inherited from class adams.core.logging.LoggingObject
m_Logger, m_LoggingIsEnabled, m_LoggingLevel
-
-
Constructor Summary
Constructors Constructor Description TextStatistics()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanGenerateOutput(ResultItem item)Checks whether output can be generated from this item.StringclassDetailsTipText()Returns the tip text for this property.StringcomplexityStatisticsTipText()Returns the tip text for this property.StringconfusionMatrixTipText()Returns the tip text for this property.JComponentcreateOutput(ResultItem item, MessageCollection errors)Generates output from the item.protected TextualContentPanelcreateOutput(weka.classifiers.Evaluation eval, MetaData runInfo)Generates a panel from the results of the evaluation.voiddefineOptions()Adds options to the internal list of options.booleangetClassDetails()Returns whether the class details are output as well.booleangetComplexityStatistics()Returns whether the complexity stats are output as well.booleangetConfusionMatrix()Returns whether to output the confusion matrix as well.booleangetRunInformation()Returns whether the run information is output as well.StringgetTitle()The title to use for the tab.StringglobalInfo()Returns a string describing the object.StringrunInformationTipText()Returns the tip text for this property.voidsetClassDetails(boolean value)Sets whether the class details are output as well.voidsetComplexityStatistics(boolean value)Sets whether to output complexity stats as well.voidsetConfusionMatrix(boolean value)Sets whether to output the confusion matrix as well.voidsetRunInformation(boolean value)Sets whether the run information is output as well.-
Methods inherited from class adams.gui.tools.wekainvestigator.tab.classifytab.output.AbstractOutputGenerator
addPage, newMultiPagePane
-
Methods inherited from class adams.gui.tools.wekainvestigator.output.AbstractOutputGenerator
addTab, 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
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface adams.core.logging.LoggingLevelHandler
getLoggingLevel
-
-
-
-
Field Detail
-
m_ConfusionMatrix
protected boolean m_ConfusionMatrix
whether to print the confusion matrix as well.
-
m_ComplexityStatistics
protected boolean m_ComplexityStatistics
whether to print the complexity statistics as well.
-
m_ClassDetails
protected boolean m_ClassDetails
whether to print the class details as well.
-
m_RunInformation
protected boolean m_RunInformation
whether to print the run information as well.
-
-
Method Detail
-
globalInfo
public String globalInfo()
Returns a string describing the object.- Specified by:
globalInfoin interfaceGlobalInfoSupporter- Specified by:
globalInfoin classAbstractOptionHandler- Returns:
- a description suitable for displaying in the gui
-
defineOptions
public void defineOptions()
Adds options to the internal list of options.- Specified by:
defineOptionsin interfaceOptionHandler- Overrides:
defineOptionsin classAbstractOptionHandler
-
setConfusionMatrix
public void setConfusionMatrix(boolean value)
Sets whether to output the confusion matrix as well.- Parameters:
value- if true then the confusion matrix will be output as well
-
getConfusionMatrix
public boolean getConfusionMatrix()
Returns whether to output the confusion matrix as well.- Returns:
- true if the confusion matrix stats are output as well
-
confusionMatrixTipText
public String confusionMatrixTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setComplexityStatistics
public void setComplexityStatistics(boolean value)
Sets whether to output complexity stats as well.- Parameters:
value- if true then the complexity stats will be output as well
-
getComplexityStatistics
public boolean getComplexityStatistics()
Returns whether the complexity stats are output as well.- Returns:
- true if the complexity stats are output as well
-
complexityStatisticsTipText
public String complexityStatisticsTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setClassDetails
public void setClassDetails(boolean value)
Sets whether the class details are output as well.- Parameters:
value- if true then the class details are output as well
-
getClassDetails
public boolean getClassDetails()
Returns whether the class details are output as well.- Returns:
- true if the class details are output as well
-
classDetailsTipText
public String classDetailsTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setRunInformation
public void setRunInformation(boolean value)
Sets whether the run information is output as well.- Parameters:
value- if true then the run information is output as well
-
getRunInformation
public boolean getRunInformation()
Returns whether the run information is output as well.- Returns:
- true if the run information is output as well
-
runInformationTipText
public String runInformationTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
getTitle
public String getTitle()
The title to use for the tab.- Specified by:
getTitlein classAbstractOutputGenerator<ResultItem>- Returns:
- the title
-
canGenerateOutput
public boolean canGenerateOutput(ResultItem item)
Checks whether output can be generated from this item.- Specified by:
canGenerateOutputin classAbstractOutputGenerator<ResultItem>- Parameters:
item- the item to check- Returns:
- true if output can be generated
-
createOutput
protected TextualContentPanel createOutput(weka.classifiers.Evaluation eval, MetaData runInfo)
Generates a panel from the results of the evaluation.- Parameters:
eval- the evaluation to appendrunInfo- the run information to add- Returns:
- the generated panel
-
createOutput
public JComponent createOutput(ResultItem item, MessageCollection errors)
Generates output from the item.- Specified by:
createOutputin classAbstractOutputGenerator<ResultItem>- Parameters:
item- the item to generate output forerrors- for collecting error messages- Returns:
- the output component, null if failed to generate
-
-