ContingencyTableCell Structure

Represents a bin in a ContingencyTable.

Definition

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

Remarks

A ContingencyTableCell represents one cell in a contingency table corresponding to specific levels of the row and column categorical variables.

ContingencyTableCell objects cannot be created directly. They are created as needed by the ContingencyTable class.

Properties

AdjustedStandardizedResidual Gets the standardized difference between the expected and the actual count in the cell of the contingency table.
ChiSquare Gets the contribution of the cell to the Chi-square statistic of the contingency table.
ColumnLevel Gets the level of the column containing the cell.
Count Gets the number of observations in the cell.
ExpectedCount Gets the expected count of the cell based on the row and column totals of the contigency table.
RelativeFrequency Gets the relative frequency of the cell in the ContingencyTableCell.
RelativeFrequencyInColumn Gets the frequency of the cell relative to the other cells in the same column of the contingency table.
RelativeFrequencyInRow Gets the frequency of the cell relative to the other cells in the same row of the contingency table.
RelativePercentage Gets the relative percentage of the cell in the ContingencyTableCell.
RelativePercentageInColumn Gets the percentage of the cell relative to the other cells in the same column of the contingency table.
RelativePercentageInRow Gets the percentage of the cell relative to the other cells in the same row of the contingency table.
Residual Gets the difference between the expected and the actual count in the cell of the contingency table.
RowLevel Gets the level of the row containing the cell.
StandardizedResidual Gets the standardized difference between the expected and the actual count in the cell of the contingency table.

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.
(Inherited from ValueType)

Fields

Empty Represents the null value of a ContingencyTableCell.

See Also