Click or drag to resize
FrameModuleSelectRowKeysR1, R2, C Method
Builds a new data frame whose row keys are the results of applying the specified function on the row keys of the original data frame. ## Parameters - `frame` - Input data frame to be transformed - `f` - Function of one argument that defines the row key mapping [category:Frame transformations]

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

Parameters

f
Type: Microsoft.FSharp.CoreFSharpFuncR1, R2

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

frame
Type: DeedleFrameR1, C

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

Type Parameters

R1
R2
C

Return Value

Type: FrameR2, C

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

See Also