Represents a data cell in an AnovaModel.
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Class Cell _ Inherits DataArrayElement |
| C# |
|---|
public class Cell : DataArrayElement |
| C++ |
|---|
public ref class Cell : public DataArrayElement |
Methods
| Icon | Type | Description |
|---|---|---|
| Equals(Object) |
Determines whether two DataArrayElement
instances are equal.
| |
| Equals(DataArrayElement) |
Determines whether two DataArrayElement
instances are equal.
| |
| Finalize() | ||
| GetHashCode() |
Serves as a hash function for DataArrayElement, suitable
for use in hashing algorithms and data structures like
a hash table.
| |
| GetType() | Gets the Type of the current instance. | |
| MemberwiseClone() | Creates a shallow copy of the current Object. | |
| ToString() |
Fields
| Icon | Type | Description |
|---|---|---|
| All |
Special Index object that indicates an indexed property should be evaluated over all levels of the factor.
|
Properties
| Icon | Type | Description |
|---|---|---|
| CentralSumOfSquares |
Gets the sum of squares of all the non-empty data values centered around the cell mean.
| |
| Count |
Gets the number of non-empty data values.
| |
| Index |
Gets the linearized index of the DataArrayElement.
| |
| Mean |
Gets the mean of all non-empty data values.
| |
| Parent |
Gets the DataArrayBase that is the parent of this DataArrayElement.
| |
| StandardDeviation |
Gets the biased standard deviation of all non-empty data values.
| |
| Sum |
Gets the sum of all non-empty data values.
| |
| SumOfSquares |
Gets the sum of the squares of all non-empty data values.
| |
| Value |
Gets the value associated with the element.
| |
| Variance |
Gets the biased variance of all non-empty data values.
|
Remarks
A Cell object represents the data corresponding to a specific set
of factor levels in an AnovaModel.
Cell objects can not be instantiated directly. Instead, use an indexer property of the CellArray object that holds the complete data set to obtain a reference to a specific cell. The special index All indicates that an indexed property should be evaluated over all levels of the factor.
A cell objects exposes summary statistics for the data in the cell, including the Mean, StandardDeviation, and Variance.