Click or drag to resize

BivariateCrosstabsR, C Method

Produces a cross-tabulation.

Namespace:  Meta.Numerics.Statistics
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public static ContingencyTable<R, C> Crosstabs<R, C>(
	IReadOnlyList<R> rowValues,
	IReadOnlyList<C> columnValues
)

Parameters

rowValues
Type: System.Collections.GenericIReadOnlyListR
The data values for rows.
columnValues
Type: System.Collections.GenericIReadOnlyListC
The data values for columns.

Type Parameters

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

Return Value

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