Click or drag to resize
ANOVA Constructor (Double, Double, Double, Double, Double)
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.2.0
Syntax
public ANOVA(
	double dfr,
	double ssr,
	double dfe,
	double sse,
	double gmean
)

Parameters

dfr
Type: SystemDouble
A double representing the degrees of freedom for the model.
ssr
Type: SystemDouble
A double representing the sum of squares for the model.
dfe
Type: SystemDouble
A double representing the degrees of freedom for the error.
sse
Type: SystemDouble
A double representing the sum of squares for the error.
gmean
Type: SystemDouble
A double representing the grand mean.
Remarks
If the grand mean is not known it may be set to not-a-number.
See Also