Click or drag to resize
FrameModuleSortRowByC, T, V, R Method
Returns a data frame that contains the same data as the input, but whose rows are ordered on a particular column of the frame. [category:Sorting and index manipulation]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Frame<R, C> SortRowBy<C, T, V, R>(
	C colKey,
	FSharpFunc<T, V> f,
	Frame<R, C> frame
)

Parameters

colKey
Type: C

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

f
Type: Microsoft.FSharp.CoreFSharpFuncT, V

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

frame
Type: DeedleFrameR, C

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

Type Parameters

C
T
V
R

Return Value

Type: FrameR, C

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

See Also