public static enum AbstractPMMLRegressionModel.NormalizationMethod extends Enum<AbstractPMMLRegressionModel.NormalizationMethod>
Enum Constant and Description |
---|
logit
Normalization through the logit function.
|
none
No normalization is used.
|
Modifier and Type | Method and Description |
---|---|
double |
normalize(double value) |
static AbstractPMMLRegressionModel.NormalizationMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractPMMLRegressionModel.NormalizationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractPMMLRegressionModel.NormalizationMethod none
public static final AbstractPMMLRegressionModel.NormalizationMethod logit
public static AbstractPMMLRegressionModel.NormalizationMethod[] values()
for (AbstractPMMLRegressionModel.NormalizationMethod c : AbstractPMMLRegressionModel.NormalizationMethod.values()) System.out.println(c);
public static AbstractPMMLRegressionModel.NormalizationMethod 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 double normalize(double value)
Copyright © 2020 Actian Corporation. All rights reserved.