public static enum StatsFunctions.NormalizeMethod extends Enum<StatsFunctions.NormalizeMethod>
Enum Constant and Description |
---|
MINMAX
Normalize using the min-max method:
n = (x - min) / (max - min) . |
ZSCORE
Normalize using z-score:
z(x) = (x - mean) / standard_deviation . |
Modifier and Type | Method and Description |
---|---|
String |
getSuffix()
Return the suffix added to fields normalized by this method.
|
static StatsFunctions.NormalizeMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatsFunctions.NormalizeMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatsFunctions.NormalizeMethod MINMAX
n = (x - min) / (max - min)
.public static final StatsFunctions.NormalizeMethod ZSCORE
z(x) = (x - mean) / standard_deviation
.public static StatsFunctions.NormalizeMethod[] values()
for (StatsFunctions.NormalizeMethod c : StatsFunctions.NormalizeMethod.values()) System.out.println(c);
public static StatsFunctions.NormalizeMethod 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 nullpublic String getSuffix()
Copyright © 2019 Actian Corporation. All rights reserved.