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.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public ANOVA(
double dfr,
double ssr,
double dfe,
double sse,
double gmean
)
Public Sub New (
dfr As Double,
ssr As Double,
dfe As Double,
sse As Double,
gmean As Double
)
public:
ANOVA(
double dfr,
double ssr,
double dfe,
double sse,
double gmean
)
new :
dfr : float *
ssr : float *
dfe : float *
sse : float *
gmean : float -> ANOVA
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