Click or drag to resize
FrameModuleGroupRowsUsingR, C, K Method
Group rows of a data frame using the specified `selector`. The selector is called with a row key and object series representing the row and should return a new key. The result is a frame with multi-level index, where the first level is formed by the newly created keys. [category:Grouping, windowing and chunking]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Frame<Tuple<K, R>, C> GroupRowsUsing<R, C, K>(
	FSharpFunc<R, FSharpFunc<ObjectSeries<C>, K>> selector,
	Frame<R, C> frame
)

Parameters

selector
Type: Microsoft.FSharp.CoreFSharpFuncR, FSharpFuncObjectSeriesC, K

[Missing <param name="selector"/> documentation for "M:Deedle.FrameModule.GroupRowsUsing``3(Microsoft.FSharp.Core.FSharpFunc{``0,Microsoft.FSharp.Core.FSharpFunc{Deedle.ObjectSeries{``1},``2}},Deedle.Frame{``0,``1})"]

frame
Type: DeedleFrameR, C

[Missing <param name="frame"/> documentation for "M:Deedle.FrameModule.GroupRowsUsing``3(Microsoft.FSharp.Core.FSharpFunc{``0,Microsoft.FSharp.Core.FSharpFunc{Deedle.ObjectSeries{``1},``2}},Deedle.Frame{``0,``1})"]

Type Parameters

R
C
K

Return Value

Type: FrameTupleK, R, C

[Missing <returns> documentation for "M:Deedle.FrameModule.GroupRowsUsing``3(Microsoft.FSharp.Core.FSharpFunc{``0,Microsoft.FSharp.Core.FSharpFunc{Deedle.ObjectSeries{``1},``2}},Deedle.Frame{``0,``1})"]

See Also