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

IconTypeDescription
Equals(Object)
Determines whether two DataArrayElement instances are equal.
Equals(DataArrayElement)
Determines whether two DataArrayElement instances are equal.
Finalize()
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
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()
Returns a String that represents the current Object.

Fields

IconTypeDescription
static memberAll
Special Index object that indicates an indexed property should be evaluated over all levels of the factor.

Properties

IconTypeDescription
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.

Inheritance Hierarchy

System.Object
  Extreme.Statistics.DataArrayElement
    Extreme.Statistics.Cell