| SeriesModuleFillMissingUsingK, T Method |
Fill missing values in the series using the specified function.
The specified function is called with all keys for which the series
does not contain value and the result of the call is used in place
of the missing value.
## Parameters
- `series` - An input series that is to be filled
- `f` - A function that takes key `K` and generates a value to be
used in a place where the original series contains a missing value.
## Remarks
This function can be used to implement more complex interpolation.
For example see [handling missing values in the tutorial](../frame.html#missing)
[category:Missing values]
Namespace:
Deedle
Assembly:
Deedle (in Deedle.dll) Version: 1.2
Syntax public static Series<K, T> FillMissingUsing<K, T>(
FSharpFunc<K, T> f,
Series<K, T> series
)
Parameters
- f
- Type: Microsoft.FSharp.CoreFSharpFuncK, T
[Missing <param name="f"/> documentation for "M:Deedle.SeriesModule.FillMissingUsing``2(Microsoft.FSharp.Core.FSharpFunc{``0,``1},Deedle.Series{``0,``1})"]
- series
- Type: DeedleSeriesK, T
[Missing <param name="series"/> documentation for "M:Deedle.SeriesModule.FillMissingUsing``2(Microsoft.FSharp.Core.FSharpFunc{``0,``1},Deedle.Series{``0,``1})"]
Type Parameters
- K
- T
Return Value
Type:
SeriesK,
T[Missing <returns> documentation for "M:Deedle.SeriesModule.FillMissingUsing``2(Microsoft.FSharp.Core.FSharpFunc{``0,``1},Deedle.Series{``0,``1})"]
See Also