Click or drag to resize
FrameModuleIndexRowsUsingC, R2, R1 Method
Replace the row index of the frame with a sequence of row keys generated using a function invoked on each row. ## Parameters - `frame` - Source data frame whose row index are to be replaced. - `f` - A function from row (as object series) to new row key value [category:Sorting and index manipulation]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Frame<R2, C> IndexRowsUsing<C, R2, R1>(
	FSharpFunc<ObjectSeries<C>, R2> f,
	Frame<R1, C> frame
)

Parameters

f
Type: Microsoft.FSharp.CoreFSharpFuncObjectSeriesC, R2

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

frame
Type: DeedleFrameR1, C

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

Type Parameters

C
R2
R1

Return Value

Type: FrameR2, C

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

See Also