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

Syntax

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

Return Value

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:
indexDescription
0Degrees of freedom for model
1Degrees of freedom for error
2Total degrees of freedom
3Sum of squares for model
4Sum of squares for error
5Total sum of squares
6Model mean square
7Error mean square
8F statistic
9p-value
10R-squared (in percent)
11Adjusted R-squared (in percent)
12Estimated standard deviation of the model error
13Mean of the response (dependent variable)
14Coefficient of variation (in percent)

See Also