Model Input Category Enumeration
Enumerates the categories or roles of variables
in a statistical or machine learning model.
Definition
Namespace: Numerics.NET.DataAnalysis.Models
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
public enum ModelInputCategoryMembers
| Features | 0 | The category of features, independent variables. |
| Independent | 0 | Same as Features. |
| Target | 1 | The category of targets, dependent variables. |
| Dependent | 1 | Same as Target. |
| Weight | 2 | The category of weights. |
| Group | 3 | The grouping variables. |
| Offset | 4 | For some forms of generalized linear models, the variable that contains an offset which has a fixed coefficient of 1. |
| Count | 5 | For binomial regression, the variable that contains the total number of trials. |
| Survival | 6 | For survival analysis, the variables that contains the survival or failure times and event status. |
| Custom | 99 | A custom category. |