Click or drag to resize
SeriesK, VDollara Operator
Custom operator that can be used for applying a function to all elements of a series. This provides a nicer syntactic sugar for the `Series.mapValues` function. For example: // Given a float series and a function on floats let s1 = Series.ofValues [ 1.0 .. 10.0 ] let adjust v = max 10.0 v // Apply "adjust (v + v)" to all elements adjust $ (s1 + s1)

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
C# does not support this operator.

Parameters

f
Type: Microsoft.FSharp.CoreFSharpFuncV, a

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

series
Type: DeedleSeriesK, V

[Missing <param name="series"/> documentation for "M:Deedle.Series`2.op_Dollar``1(Microsoft.FSharp.Core.FSharpFunc{`1,``0},Deedle.Series{`0,`1})"]

Type Parameters

a

Return Value

Type: SeriesK, a

[Missing <returns> documentation for "M:Deedle.Series`2.op_Dollar``1(Microsoft.FSharp.Core.FSharpFunc{`1,``0},Deedle.Series{`0,`1})"]

See Also