Click or drag to resize
FrameModulemapR, C, a, b Method
Builds a new data frame whose values are the results of applying the specified function on these values, but only for those columns which can be converted to the appropriate type for input to the mapping function. ## Parameters - `frame` - Input data frame to be transformed - `f` - Function that defines the mapping [category:Frame transformations]

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

Parameters

f
Type: Microsoft.FSharp.CoreFSharpFuncR, FSharpFuncC, FSharpFunca, b

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

frame
Type: DeedleFrameR, C

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

Type Parameters

R
C
a
b

Return Value

Type: FrameR, C

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

See Also