| Column Name | Data Type | Description |
|---|---|---|
| class | VARCHAR | Column containing the response values. |
| variable | VARCHAR | Column containing the attributes. |
| type | VARCHAR | Input variable types ('NUMERIC' or 'CATEGORICAL'). |
| category | VARCHAR | If type is 'NUMERIC', then NULL. If type is 'CATEGORICAL', then Category of categorical variable. |
| cnt | BIGINT | Count of observations with this class, variable, and category. |
| sum | REAL | If type is 'NUMERIC', then Sum of variable values for observations with this class, variable, and category. If type is 'CATEGORICAL', then NULL. |
| sumsq | REAL | If type is 'NUMERIC', then Sum of square of variable values for observations with this class, variable, and category. If type is 'CATEGORICAL', then NULL. |
| totalcnt | BIGINT | Total count of observations. |
| smoothingfactor | REAL | If type is 'NUMERIC', then NULL. If type is 'CATEGORICAL', then smoothing factor with this class, variable. |