Namespace:
Extreme.Statistics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
[<SealedAttribute>]
type Cell = struct end
The Cell type exposes the following members.
| Name | 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.
|
 | 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.
|
Top
| Name | Description |
---|
 | Equals | Indicates whether this instance and a specified object are equal. (Inherited from ValueType.) |
 | GetHashCode | Returns the hash code for this instance. (Inherited from ValueType.) |
 | GetType | Gets the Type of the current instance. (Inherited from Object.) |
 | ToString | Returns the fully qualified type name of this instance. (Overrides ValueTypeToString.) |
  | Total |
Returns a cell that combines the statistics in the specified list of cells.
|
Top
| Name | Description |
---|
  | Addition |
Returns a new cell that contains the combined statistics for two cells.
|
Top
Top
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.
Reference