Interface NumericSummaryStatistic
-
- All Superinterfaces:
SummaryStatistic
- All Known Implementing Classes:
AbstractGeneralSummaryStatistic,AbstractNumericSummaryStatistic,CorrelationCoefficient,MeanAbsoluteError,NoPrediction,RootMeanSquaredError
public interface NumericSummaryStatistic extends SummaryStatistic
Interface for statistics that work on numeric predictions.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Field Summary
Fields Modifier and Type Field Description static doubleMISSING_NUMERICthe value for missing numeric values.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double[]getNumericActual()Returns the actual values.double[]getNumericPredicted()Returns the predicted values.voidsetNumericActual(double[] value)Sets the actual values.voidsetNumericPredicted(double[] value)Sets the predicted values.-
Methods inherited from interface adams.flow.transformer.summarystatistics.SummaryStatistic
calculate, clear, getNames
-
-
-
-
Field Detail
-
MISSING_NUMERIC
static final double MISSING_NUMERIC
the value for missing numeric values.- See Also:
- Constant Field Values
-
-
Method Detail
-
setNumericActual
void setNumericActual(double[] value)
Sets the actual values.- Parameters:
value- the actual
-
getNumericActual
double[] getNumericActual()
Returns the actual values.- Returns:
- the actual
-
setNumericPredicted
void setNumericPredicted(double[] value)
Sets the predicted values.- Parameters:
value- the predicted
-
getNumericPredicted
double[] getNumericPredicted()
Returns the predicted values.- Returns:
- the predicted
-
-