type TANOVA1Result = packed record;
Defines one-way ANOVA statistics parameters.
This structured type defines following Regress.ANOVA1 routine statistical parameters:
- SS1 Sum of squares (source of variation between groups)
- SS2 Sum of squares (source of variation within groups)
- SSTotal Sum of squares (total)
- Deg1 Degrees of freedom (source of variation between groups)
- Deg2 Degrees of freedom (source of variation within groups)
- DegTotal Degrees of freedom (total)
- MS1 Mean squares (source of variation between groups), where MS1 = SS1/Deg1
- MS2 Mean squares (source of variation within groups), where MS2 = SS2/Deg2
- FDist F statistics (the ratio of MS1 and MS2)
- FCrit Critical F value
Fields
| Name | Type | Description |
|---|---|---|
| Deg1 | Double | |
| Deg2 | Double | |
| DegTotal | Double | |
| FCrit | Double | |
| FDist | Double | |
| MS1 | Double | |
| MS2 | Double | |
| SS1 | Double | |
| SS2 | Double | |
| SSTotal | Double |