Creates a new two-dimensional grouping from the specified row and column keys.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Pivot<R, C> Pivot<R, C>(
IList<R> rowValues,
IList<C> columnValues
)
Public Shared Function Pivot(Of R, C) (
rowValues As IList(Of R),
columnValues As IList(Of C)
) As Pivot(Of R, C)
public:
generic<typename R, typename C>
static Pivot<R, C>^ Pivot(
IList<R>^ rowValues,
IList<C>^ columnValues
)
static member Pivot :
rowValues : IList<'R> *
columnValues : IList<'C> -> Pivot<'R, 'C>
Parameters
- rowValues
- Type: System.Collections.GenericIListR
A list containing the row keys. - columnValues
- Type: System.Collections.GenericIListC
A list containing the column keys.
Type Parameters
- R
- The element type of the row keys.
- C
- The element type of the column keys.
Return Value
Type:
PivotR,
CA pivot object that represent a two-dimensional grouping
with the unique values in
rowValues as row keys
and the unique values in
columnValues as column keys.
Reference