Click or drag to resize
FrameModuleGroupRowsByBoolC, R Method
Groups the rows of a frame by a specified column in the same way as `groupRowsBy`. This function assumes that the values of the specified column are of type `bool`. [category:Grouping, windowing and chunking]

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

Parameters

column
Type: C

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

frame
Type: DeedleFrameR, C

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

Type Parameters

C
R

Return Value

Type: FrameTupleBoolean, R, C

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

See Also