Creates a new two-dimensional grouping from the specified row and column keys.
Namespace: Extreme.CollectionsAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.17114.0)
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.
Numerical Libraries
Supported in: 5.x
Reference