| ANCOVAGetANOVATables Method |
Returns a matrix of size ngroup by 15 containing the
analysis of variance tables for each linear regression model fitted
separately to each treatment group.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxpublic double[][] GetANOVATables()
Public Function GetANOVATables As Double()()
public:
array<array<double>^>^ GetANOVATables()
member GetANOVATables : unit -> float[][]
Return Value
Type:
Double
A
double matrix containing the analysis of variance tables
for each linear regression model fitted separately to each
treatment group. The 15 values in the
i-th row are for
treatment group
i organized as follows:
| index | Description |
|---|
| 0 | Degrees of freedom for model |
| 1 | Degrees of freedom for error |
| 2 | Total degrees of freedom |
| 3 | Sum of squares for model |
| 4 | Sum of squares for error |
| 5 | Total sum of squares |
| 6 | Model mean square |
| 7 | Error mean square |
| 8 | F statistic |
| 9 | p-value |
| 10 | R-squared (in percent) |
| 11 | Adjusted R-squared (in percent) |
| 12 | Estimated standard deviation of the model error |
| 13 | Mean of the response (dependent variable) |
| 14 | Coefficient of variation (in percent) |
See Also