Click or drag to resize
FrameModuleSelectColumnValuesR, a, b, C Method
Builds a new data frame whose columns are the results of applying the specified function on the columns of the input data frame. The function is called with an object series that represents the column data (use `mapCols` if you need to access the column key). ## Parameters - `frame` - Input data frame to be transformed - `f` - Function of one argument that defines the column mapping [category:Frame transformations]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Frame<b, C> SelectColumnValues<R, a, b, C>(
	FSharpFunc<ObjectSeries<R>, a> f,
	Frame<R, C> frame
)
where a : Object, ISeries<b>

Parameters

f
Type: Microsoft.FSharp.CoreFSharpFuncObjectSeriesR, a

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

frame
Type: DeedleFrameR, C

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

Type Parameters

R
a
b
C

Return Value

Type: Frameb, C

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

See Also