Click or drag to resize
FrameModuleSortRowsWithC, a, 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> SortRowsWith<C, a, R>(
	C colKey,
	FSharpFunc<a, FSharpFunc<a, int>> compareFunc,
	Frame<R, C> frame
)

Parameters

colKey
Type: C

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

compareFunc
Type: Microsoft.FSharp.CoreFSharpFunca, FSharpFunca, Int32

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

frame
Type: DeedleFrameR, C

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

Type Parameters

C
a
R

Return Value

Type: FrameR, C

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

See Also