Assembly: Extreme.Numerics (in Extreme.Numerics)
Version: 2.1.7017.0
Syntax
| Visual Basic (Declaration) |
|---|
Public MustInherit Class AnovaModel _ Inherits GeneralLinearModel |
| C# |
|---|
public abstract class AnovaModel : GeneralLinearModel |
| Visual C++ |
|---|
public ref class AnovaModel abstract : public GeneralLinearModel |
Remarks
The AnovaModel class is an abstract base class for all classes that implement Analysis of Variance (ANOVA) models. It inherits from GeneralLinearModel, and defines a number of additional properties and methods useful in analysis of variance.
ANOVA models are a specialized form of GeneralLinearModel whose independent variables or predictors are all categorical in nature. The categorical scales are called factors. Use the GetFactor(Int32) method to get the factor that corresponds to a specific independent variable.
The Cells property returns a CellArray object that represents the data organized into cells. There is one cell for every combination of factor levels. The IsBalanced property indicates whether all cells have the same number of observations.
One of the assumptions in analysis of variance is that the variances of the data in each cell are the same. The GetHomogeneityOfVariancesTest() returns a hypothesis test object that allows you to verify this assumption.
This is an abstract base class, and cannot be instantiated directly. Instead, use one of the derived classes listed in the following table. ClassDescriptionOneWayAnovaModelRepresents a one-way analysis of variance model.OneWayRAnovaModelRepresents a one-way analysis of variance model with repeated measures.TwoWayAnovaModelRepresents a two-way analysis of variance.
Inheritance Hierarchy
Extreme.Statistics.GeneralLinearModel
Extreme.Statistics.AnovaModel
Extreme.Statistics.OneWayAnovaModel
Extreme.Statistics.OneWayRAnovaModel
Extreme.Statistics.TwoWayAnovaModel