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

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

Parameters

f
Type: Microsoft.FSharp.CoreFSharpFuncObjectSeriesC, V

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

frame
Type: DeedleFrameR, C

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

Type Parameters

C
V
R

Return Value

Type: SeriesR, V

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

See Also