Package com.imsl.datamining
Enum Class PredictiveModel.VariableType
- All Implemented Interfaces:
Serializable,Comparable<PredictiveModel.VariableType>,java.lang.constant.Constable
- Enclosing class:
- PredictiveModel
Enumerates different variable types.
| 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 |
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe associated variable can assume one of a limited number of values (categories).The associated variable should be ignored.The associated variable is binomial or multinomial counts, given innClasses-1consecutive columns.The associated variable is binomial or multinomial counts, given innClassesconsecutive columns.The associated variable is binomial or multinomial class labels.The associated variable takes a single value.The associated variable can assume a limited number of discrete, ordered values.The associated variable can assume any real value within a range of values. -
Method Summary
Modifier and TypeMethodDescriptionstatic PredictiveModel.VariableTypeReturns the enum constant of this class with the specified name.static PredictiveModel.VariableType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CATEGORICAL
The associated variable can assume one of a limited number of values (categories). -
MULTINOMIAL_LABELS
The associated variable is binomial or multinomial class labels. -
MULTINOMIAL_COUNTS_ALL
The associated variable is binomial or multinomial counts, given innClassesconsecutive columns. -
MULTINOMIAL_COUNTS
The associated variable is binomial or multinomial counts, given innClasses-1consecutive columns. -
ORDERED_DISCRETE
The associated variable can assume a limited number of discrete, ordered values. -
ONE_CLASS
The associated variable takes a single value. -
QUANTITATIVE_CONTINUOUS
The associated variable can assume any real value within a range of values. -
IGNORE
The associated variable should be ignored.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-