Interface ActualVsPredictedProcessor<T>
-
- Type Parameters:
T- the type of output that is generated
- All Superinterfaces:
Destroyable,OptionHandler
- All Known Subinterfaces:
ActualVsPredictedHtmlProcessor
- All Known Implementing Classes:
AbstractActualVsPredictedHtmlProcessor,AbstractActualVsPredictedProcessor,ClassifierErrors,ClassifierErrorsKernelDensityEstimate,PassThrough
public interface ActualVsPredictedProcessor<T> extends OptionHandler
Interface for processors that generate 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 Classgenerates()Returns the type of output the processor generates.Tprocess(SpreadSheet sheet, MessageCollection errors)Processes the actual vs predicted data and returns the output generated.-
Methods inherited from interface adams.core.Destroyable
destroy
-
Methods inherited from interface adams.core.option.OptionHandler
cleanUpOptions, defineOptions, getOptionManager, toCommandLine
-
-
-
-
Method Detail
-
generates
Class generates()
Returns the type of output the processor generates.- Returns:
- the type of output
-
process
T process(SpreadSheet sheet, MessageCollection errors)
Processes the actual vs predicted data and returns the output generated.- Parameters:
sheet- the data to processerrors- for collecting errors- Returns:
- the output, null in case of error
-
-