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.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public double[] GetANOVATable()
Visual Basic (Declaration)
Public Function GetANOVATable As Double()
Visual C++
public:
array<double>^ GetANOVATable()

Return Value

A double array containing the analysis of variance table.

Remarks

The analysis of variance statistics are given as follows:

ElementAnalysis of Variance Statistics
0Degrees of freedom for the model
1Degrees of freedom for error
2Total (corrected) degrees of freedom
3Sum of squares for the model
4Sum of squares for error
5Total (corrected) sum of squares
6Model mean square
7Error mean square
8Overall F-statistic
9p-value
10R^2 (in percent)
11Adjusted R^2 (in percent)
12Estimate of the standard deviation
13Overall mean of y
14Coefficient of variation (in percent)

See Also