Cell Structure

Represents a data cell in an AnovaModel.

Definition

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public struct Cell
Inheritance
Object  →  ValueType  →  Cell

Remarks

A Cell object represents the data corresponding to a specific set of factor levels in an AnovaModel.

A cell objects exposes summary statistics for the data in the cell, including the Mean, StandardDeviation, and Variance.

Properties

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.
Mean Gets the mean of all non-empty data values.
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.
Variance Gets the biased variance of all non-empty data values.

Methods

EqualsIndicates whether this instance and a specified object are equal.
(Inherited from ValueType)
GetHashCodeReturns the hash code for this instance.
(Inherited from ValueType)
GetTypeGets the Type of the current instance.
(Inherited from Object)
ToStringReturns the fully qualified type name of this instance.
(Overrides ValueType.ToString())
Total Returns a cell that combines the statistics in the specified list of cells.

Operators

Addition(Cell, Cell) Returns a new cell that contains the combined statistics for two cells.

Fields

Aggregator Gets the aggregator that computes cells.
All Special Index object that indicates an indexed property should be evaluated over all levels of the factor.
Obsolete.
Empty Represents a cell with no data.

See Also