IMSL C# Numerical Library

ANOVA Constructor (Double, Double, Double, Double, Double)

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

public ANOVA(
   double dfr,
   double ssr,
   double dfe,
   double sse,
   double gmean
);

Parameters

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

Remarks

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

See Also

ANOVA Class | Imsl.Stat Namespace | ANOVA Constructor Overload List