Click or drag to resize
FrameModuleTryMapRowsR, C, V Method
Returns a series, obtained by applying the specified projection function `f` to all rows of the input frame. The resulting series wraps the results in `tryval<'V>`. When the projection function fails, the exception is wrapped using the `Error` case. [category:Processing frames with exceptions]

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

Parameters

f
Type: Microsoft.FSharp.CoreFSharpFuncR, FSharpFuncObjectSeriesC, V

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

frame
Type: DeedleFrameR, C

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

Type Parameters

R
C
V

Return Value

Type: SeriesR, TryValueV

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

See Also