public enum CrossValidationCombineMethod extends Enum<CrossValidationCombineMethod>
| Enum Constant and Description | 
|---|
R_SQUARED
Combines R-squared statistics calculated on different partitions of data. 
 | 
UNWEIGHTED_SUM
Simply sums the numeric test results. 
 | 
WEIGHTED_AVERAGE
Calculates the average of the numeric test results weighted by the number of records in each test partitioning. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static CrossValidationCombineMethod | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static CrossValidationCombineMethod[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final CrossValidationCombineMethod WEIGHTED_AVERAGE
public static final CrossValidationCombineMethod UNWEIGHTED_SUM
public static final CrossValidationCombineMethod R_SQUARED
public static CrossValidationCombineMethod[] values()
for (CrossValidationCombineMethod c : CrossValidationCombineMethod.values()) System.out.println(c);
public static CrossValidationCombineMethod valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.