ContingencyTable.Item Property

Definition

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

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.
C#
public ContingencyTableCell this[
	int row,
	int column
] { get; }

Parameters

row  Int32
The zero-based index of the row.
column  Int32
The zero-based index of the column.

Property Value

ContingencyTableCell

Item(Object, Object)

Gets the cell for the specified values of the categories in the contingency table.
C#
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.

Property Value

ContingencyTableCell

See Also