Click or drag to resize
SeriesModuleMapValuesT, R, K Method
Returns a new series whose values are the results of applying the given function to values of the original series. This function skips over missing values and call the function with just values. It is also aliased using the `$` operator so you can write `series $ func` for `series |> Series.mapValues func`. [category:Series transformations]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Series<K, R> MapValues<T, R, K>(
	FSharpFunc<T, R> f,
	Series<K, T> series
)

Parameters

f
Type: Microsoft.FSharp.CoreFSharpFuncT, R

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

series
Type: DeedleSeriesK, T

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

Type Parameters

T
R
K

Return Value

Type: SeriesK, R

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

See Also