Click or drag to resize
FrameModuleWhereColumnsC, R Method
Returns a new data frame containing only the columns of the input frame for which the specified predicate returns `true`. The predicate is called with the column key and object series that represents the column data. ## Parameters - `frame` - Input data frame to be transformed - `f` - Function of two arguments that defines the predicate [category:Frame transformations]

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

Parameters

f
Type: Microsoft.FSharp.CoreFSharpFuncC, FSharpFuncObjectSeriesR, Boolean

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

frame
Type: DeedleFrameR, C

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

Type Parameters

C
R

Return Value

Type: FrameR, C

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

See Also