Represents a table that cross-tabulates totals from two categorical variables.
SystemObject Extreme.StatisticsContingencyTable
Namespace:
Extreme.Statistics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public class ContingencyTable
Public Class ContingencyTable
public ref class ContingencyTable
type ContingencyTable = class end
The ContingencyTable type exposes the following members.
Top
| Name | Description |
---|
 | ChiSquare |
Returns the chi-square value for the contingency table.
|
 | CoefficientOfContingency |
Returns the coefficient of contingency of the contingency table.
|
 | ColumnCount |
Gets the number of columns in the contingency table.
|
 | ColumnScale |
Gets the categorical scale that contains the categories corresponding to the columns in the contingency table.
|
 | CramerV |
Returns the Cramer V statistic for the contingency table.
|
 | ItemInt32, Int32 |
Gets the cell at the specified position in the contingency table.
|
 | ItemObject, Object |
Gets the cell for the specified values of the categories in the contingency table.
|
 | Phi |
Returns the Phi coefficient for the contingency table.
|
 | RowCount |
Gets the number of rows in the contingency table.
|
 | RowScale |
Gets the categorical scale that contains the categories corresponding to the rows in the contingency table.
|
 | TotalCount |
Gets the total of all counts in the contingency table.
|
Top
Top
Use the ContingencyTable class to represent a 2x2 or RxC contingency
table and make inferences about the relative frequencies of the tabulated data.
Individual cells are indexed through the indexed ItemObject, Object property.
Once the Compute method is called, various properties are available, including
the Chi-square value, the coefficient of contingency,
and the Cramer V.
Reference