Click or drag to resize
FrameModuleGroupRowsByC, R, K Method
Group rows of a data frame using the specified `column`. The type of the column is inferred from the usage of the resulting frame. The result is a frame with multi-level index, where the first level is formed by the newly created keys. Use `groupRowsBy[Int|String|...]` to explicitly specify the type of the column. [category:Grouping, windowing and chunking]

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

Parameters

column
Type: C

[Missing <param name="column"/> documentation for "M:Deedle.FrameModule.GroupRowsBy``3(``0,Deedle.Frame{``1,``0})"]

frame
Type: DeedleFrameR, C

[Missing <param name="frame"/> documentation for "M:Deedle.FrameModule.GroupRowsBy``3(``0,Deedle.Frame{``1,``0})"]

Type Parameters

C
R
K

Return Value

Type: FrameTupleK, R, C

[Missing <returns> documentation for "M:Deedle.FrameModule.GroupRowsBy``3(``0,Deedle.Frame{``1,``0})"]

See Also