Package com.bayesserver.data
Interface CrossValidationTestResult
-
- All Known Implementing Classes:
DefaultCrossValidationTestResult,R2CrossValidationTestResult
public interface CrossValidationTestResultInterface for cross validation test results. Each test result is based on a cross validation test partitioning.- See Also:
CrossValidation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectgetValue()Gets the test result value for this test partitioning.doublegetWeightedCaseCount()Gets the number of records in the test partitioning.DoublenumericValue()Returns the test result as a numeric value if supported, otherwise returns null.
-
-
-
Method Detail
-
getWeightedCaseCount
double getWeightedCaseCount()
Gets the number of records in the test partitioning.
-
getValue
Object getValue()
Gets the test result value for this test partitioning. This might be the log-likelihood, or the lift, etc...
-
numericValue
Double numericValue()
Returns the test result as a numeric value if supported, otherwise returns null.- Returns:
- The numeric test result if supported.
-
-