Click or drag to resize
FrameModuleMinRowByC, R Method
Returns a row of the data frame which has the smallest value of the specified `column`. The row is returned as an optional value (which is `None` for empty frame) and contains a key together with an object series representing the row. [category:Frame transformations]

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

Parameters

column
Type: C

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

frame
Type: DeedleFrameR, C

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

Type Parameters

C
R

Return Value

Type: FSharpOptionTupleR, ObjectSeriesC

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

See Also