Model Input Category Enumeration
            
            
            
            
            Enumerates the categories or roles of variables 
            in a statistical or machine learning model.
            
Definition
Namespace: Extreme.DataAnalysis.Models
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
    C#
    
 
 
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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. | 
| Custom | 99 | A custom category. |