Assembly: Extreme.Numerics (in Extreme.Numerics)
Version: 2.1.7017.0
Syntax
| Visual Basic (Declaration) |
|---|
Public Class CellArray _ Inherits DataArrayBase |
| C# |
|---|
public class CellArray : DataArrayBase |
| Visual C++ |
|---|
public ref class CellArray : public DataArrayBase |
Remarks
The data in an Analysis of Variance model is organized into cells. Each cell contains the data for a specific set of factor levels. This organization is encapsulated in a CellArray object. The cell collection of an ANOVA model can be accessed through its Cells property.
Analysis of Variance models aren't the only application of cell collections. It is useful in any situation where data is grouped according to one or more categorical variables.
Individual cells are indexed through the indexed Item(Object) property. The number of indexes equals the number of categorical variables or factors in the data. Variables containing the data for the individual variables can be obtained through the GetCellVariable(Object) and GetCellVariables() methods.