public enum ImputingStrategy extends Enum<ImputingStrategy>
Enum Constant and Description |
---|
MEAN
The default strategy.
|
MOST_FREQUENT
If this strategy is chosen, then replace missing using the most frequent value along the axis.
|
Modifier and Type | Method and Description |
---|---|
static ImputingStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImputingStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImputingStrategy MEAN
public static final ImputingStrategy MOST_FREQUENT
public static ImputingStrategy[] values()
for (ImputingStrategy c : ImputingStrategy.values()) System.out.println(c);
public static ImputingStrategy 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 null
GridGain In-Memory Computing Platform : ver. 8.9.14 Release Date : November 5 2024