BivariateCrosstabsR, C Method

Produces a cross-tabulation.

Definition

Namespace: Meta.Numerics.Statistics
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public static ContingencyTable<R, C> Crosstabs<R, C>(
	IReadOnlyList<R> rowValues,
	IReadOnlyList<C> columnValues
)

Parameters

rowValues  IReadOnlyListR
The data values for rows.
columnValues  IReadOnlyListC
The data values for columns.

Type Parameters

R
The type of row data.
C
The type of column data

Return Value

ContingencyTableR, C
A cross-tabular summary of the number of joint occurrences of each row and column value.

See Also