Contingency Table.Item Property
Definition
Namespace: Numerics.NET.Statistics
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Item[Int32, Int32] | Gets the cell at the specified position in the contingency table. |
Item[Object, Object] | Gets the cell for the specified values of the categories in the contingency table. |
Item(Int32, Int32)
Gets the cell at the specified position in the contingency table.
public ContingencyTableCell this[
int row,
int column
] { get; }
Parameters
Property Value
ContingencyTableCellItem(Object, Object)
Gets the cell for the specified values of the categories in the contingency table.
public ContingencyTableCell this[
Object rowLevel,
Object columnLevel
] { get; }
Parameters
- rowLevel Object
- The value for the row level, or All to get the totals row.
- columnLevel Object
- The value of the column level, or All to get the totals column.