Interface ActualVsPredictedHtmlProcessor
-
- All Superinterfaces:
ActualVsPredictedProcessor<String>,Destroyable,OptionHandler
- All Known Implementing Classes:
AbstractActualVsPredictedHtmlProcessor,ClassifierErrors,ClassifierErrorsKernelDensityEstimate
public interface ActualVsPredictedHtmlProcessor extends ActualVsPredictedProcessor<String>
Interface for processors that generate HTML output from a spreadsheet with actual vs predicted data. The 1st column in the spreadsheet contains the actual values and the 2nd the predicted ones.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetTitle()Returns the title to use.voidsetTitle(String value)Sets the title to use.StringtitleTipText()Returns the tip text for this property.-
Methods inherited from interface adams.flow.transformer.actualvspredictedprocessor.ActualVsPredictedProcessor
generates, process
-
Methods inherited from interface adams.core.Destroyable
destroy
-
Methods inherited from interface adams.core.option.OptionHandler
cleanUpOptions, defineOptions, getOptionManager, toCommandLine
-
-
-
-
Method Detail
-
setTitle
void setTitle(String value)
Sets the title to use.- Parameters:
value- the title
-
getTitle
String getTitle()
Returns the title to use.- Returns:
- the title
-
titleTipText
String titleTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-