ANOVAFactorialGetANOVATable Method |
Returns the analysis of variance table. Note that the Compute
method must be invoked first before invoking this method. Otherwise,
the method throws a NullReferenceException exception.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public double[] GetANOVATable()
Public Function GetANOVATable As Double()
public:
array<double>^ GetANOVATable()
member GetANOVATable : unit -> float[]
Return Value
Type:
Double
A
double array containing the analysis of variance table.
Remarks
The analysis of variance statistics are given as follows:
Element | Analysis of Variance Statistics |
---|
0 | Degrees of freedom for the model |
1 | Degrees of freedom for error |
2 | Total (corrected) degrees of freedom |
3 | Sum of squares for the model |
4 | Sum of squares for error |
5 | Total (corrected) sum of squares |
6 | Model mean square |
7 | Error mean square |
8 | Overall F-statistic |
9 | p-value |
10 | (in percent) |
11 | Adjusted (in percent) |
12 | Estimate of the standard deviation |
13 | Overall mean of y |
14 | Coefficient of variation (in percent) |
See Also