ModelTermKind Enumeration

Enumerates the possible kinds of model terms.

Definition

Namespace: Extreme.DataAnalysis.Models
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public enum ModelTermKind

Members

Constant0 The term is the constant term.
Variable1 The term is a variable that may be numerical or categorical.
Numerical2 The term is a continuous numerical variable.
Categorical3 The term is a categorical variable.
Indicator4 The term is a specific indicator variable of a categorical term.
Interaction5 The term is the multiplicative interaction between two terms.
Polynomial6 The term is a product of a term repeated multiple times.
NoConstant7 The term indicates the constant term should be excluded.
Expression8 The term is an expression involving one or more other variables.
Product9 The term is the complete interaction between two terms.
Difference10 The term is the set difference between two terms.
Union11 The term is the union of two terms.
Model12 The term defines the relationship between dependent variables and independent variables.

See Also