Model Term Kind Enumeration
Enumerates the possible kinds of model terms.
Definition
Namespace: Numerics.NET.DataAnalysis.Models
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
public enum ModelTermKind
Members
Constant | 0 | The term is the constant term. |
Variable | 1 | The term is a variable that may be numerical or categorical. |
Numerical | 2 | The term is a continuous numerical variable. |
Categorical | 3 | The term is a categorical variable. |
Indicator | 4 | The term is a specific indicator variable of a categorical term. |
Interaction | 5 | The term is the multiplicative interaction between two terms. |
Polynomial | 6 | The term is a product of a term repeated multiple times. |
NoConstant | 7 | The term indicates the constant term should be excluded. |
Expression | 8 | The term is an expression involving one or more other variables. |
Product | 9 | The term is the complete interaction between two terms. |
Difference | 10 | The term is the set difference between two terms. |
Union | 11 | The term is the union of two terms. |
Model | 12 | The term defines the relationship between dependent variables and independent variables. |