Namespace:
Extreme.Statistics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public struct ContingencyTableCell
Public Structure ContingencyTableCell
public value class ContingencyTableCell
[<SealedAttribute>]
type ContingencyTableCell = struct end
The ContingencyTableCell type exposes the following members.
| Name | Description |
---|
 | 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.
|
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. (Inherited from ValueType.) |
Top
| Name | Description |
---|
  | Empty |
Represents the null value of a ContingencyTableCell.
|
Top
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.
Reference