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

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

Parameters

f
Type: Microsoft.FSharp.CoreFSharpFuncC, a

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

frame
Type: DeedleFrameR, C

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

Type Parameters

C
a
R

Return Value

Type: FrameR, a

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

See Also