public static enum NumericAttributeFeature.Scaling extends Enum<NumericAttributeFeature.Scaling>
Enum Constant and Description |
---|
LOGARITHM
Takes logarithms of input data when they contain order-of-magnitude
larger and smaller values.
|
NONE
No scaling at all.
|
NORMALIZATION
Normalization scales all numeric variables in the range [0, 1].
|
STANDARDIZATION
Standardization transforms a variable to have zero mean and unit
variance.
|
Modifier and Type | Method and Description |
---|---|
static NumericAttributeFeature.Scaling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NumericAttributeFeature.Scaling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumericAttributeFeature.Scaling NONE
public static final NumericAttributeFeature.Scaling LOGARITHM
public static final NumericAttributeFeature.Scaling NORMALIZATION
public static final NumericAttributeFeature.Scaling STANDARDIZATION
public static NumericAttributeFeature.Scaling[] values()
for (NumericAttributeFeature.Scaling c : NumericAttributeFeature.Scaling.values()) System.out.println(c);
public static NumericAttributeFeature.Scaling 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 © 2015. All rights reserved.