public static enum PredictiveModel.VariableType extends Enum<PredictiveModel.VariableType>
| Type |
| Categorical |
| Ordered Discrete (e.g., Low, Med., High) |
| One Class |
| Multinomial Counts (for all classes or all but a reference class) |
| Multinomial Class Labels |
| Quantitative or Continuous |
| Ignore |
| Enum Constant and Description |
|---|
CATEGORICAL
The associated variable can assume one of a limited number of values
(categories).
|
IGNORE
The associated variable should be ignored.
|
MULTINOMIAL_COUNTS
The associated variable is binomial or multinomial counts, given in
nClasses-1 consecutive columns. |
MULTINOMIAL_COUNTS_ALL
The associated variable is binomial or multinomial counts, given in
nClasses consecutive columns. |
MULTINOMIAL_LABELS
The associated variable is binomial or multinomial class labels.
|
ONE_CLASS
The associated variable takes a single value.
|
ORDERED_DISCRETE
The associated variable can assume a limited number of discrete,
ordered values.
|
QUANTITATIVE_CONTINUOUS
The associated variable can assume any real value within a range of
values.
|
| Modifier and Type | Method and Description |
|---|---|
static PredictiveModel.VariableType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PredictiveModel.VariableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PredictiveModel.VariableType CATEGORICAL
public static final PredictiveModel.VariableType MULTINOMIAL_LABELS
public static final PredictiveModel.VariableType MULTINOMIAL_COUNTS_ALL
nClasses consecutive columns.public static final PredictiveModel.VariableType MULTINOMIAL_COUNTS
nClasses-1 consecutive columns.public static final PredictiveModel.VariableType ORDERED_DISCRETE
public static final PredictiveModel.VariableType ONE_CLASS
public static final PredictiveModel.VariableType QUANTITATIVE_CONTINUOUS
public static final PredictiveModel.VariableType IGNORE
public static PredictiveModel.VariableType[] values()
for (PredictiveModel.VariableType c : PredictiveModel.VariableType.values()) System.out.println(c);
public static PredictiveModel.VariableType 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 © 2022 Rogue Wave Software. All rights reserved.