Construct an analysis of variance table and related statistics. Intended for use by the LinearRegression class.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public ANOVA(
	double dfr,
	double ssr,
	double dfe,
	double sse,
	double gmean
)
Visual Basic (Declaration)
Public Sub New ( _
	dfr As Double, _
	ssr As Double, _
	dfe As Double, _
	sse As Double, _
	gmean As Double _
)
Visual C++
public:
ANOVA(
	double dfr, 
	double ssr, 
	double dfe, 
	double sse, 
	double gmean
)

Parameters

dfr
Type: System..::.Double
A double representing the degrees of freedom for the model.
ssr
Type: System..::.Double
A double representing the sum of squares for the model.
dfe
Type: System..::.Double
A double representing the degrees of freedom for the error.
sse
Type: System..::.Double
A double representing the sum of squares for the error.
gmean
Type: System..::.Double
A double representing the grand mean.

Remarks

If the grand mean is not known it may be set to not-a-number.

See Also