| SeriesModuleresampleUniformK1, K2, V Method |
Resample the series based on equivalence class on the keys and also generate values
for all keys of the target space that are between the minimal and maximal key of the
specified series (e.g. generate value for all days in the range covered by the series).
A specified function `keyProj` is used to project keys to another space and `nextKey`
is used to generate all keys in the range. Then return the chunks as nested series.
When there are no values for a (generated) key, then the function behaves according to
`fillMode`. It can look at the greatest value of previous chunk or smallest value of the
next chunk, or it produces an empty series.
## Parameters
- `series` - An input series to be resampled
- `fillMode` - When set to `Lookup.NearestSmaller` or `Lookup.NearestGreater`,
the function searches for a nearest available observation in an neighboring chunk.
Otherwise, the function `f` is called with an empty series as an argument.
- `keyProj` - A function that transforms keys from original space to a new
space (which is then used for grouping based on equivalence)
- `nextKey` - A function that gets the next key in the transformed space
## Remarks
This operation is only supported on ordered series. The method throws
`InvalidOperationException` when the series is not ordered.
[category:Sampling, resampling and advanced lookup]
Namespace:
Deedle
Assembly:
Deedle (in Deedle.dll) Version: 1.2
Syntax public static Series<K2, Series<K1, V>> resampleUniform<K1, K2, V>(
Lookup fillMode,
FSharpFunc<K1, K2> keyProj,
FSharpFunc<K2, K2> nextKey,
Series<K1, V> series
)
Parameters
- fillMode
- Type: DeedleLookup
[Missing <param name="fillMode"/> documentation for "M:Deedle.SeriesModule.resampleUniform``3(Deedle.Lookup,Microsoft.FSharp.Core.FSharpFunc{``0,``1},Microsoft.FSharp.Core.FSharpFunc{``1,``1},Deedle.Series{``0,``2})"]
- keyProj
- Type: Microsoft.FSharp.CoreFSharpFuncK1, K2
[Missing <param name="keyProj"/> documentation for "M:Deedle.SeriesModule.resampleUniform``3(Deedle.Lookup,Microsoft.FSharp.Core.FSharpFunc{``0,``1},Microsoft.FSharp.Core.FSharpFunc{``1,``1},Deedle.Series{``0,``2})"]
- nextKey
- Type: Microsoft.FSharp.CoreFSharpFuncK2, K2
[Missing <param name="nextKey"/> documentation for "M:Deedle.SeriesModule.resampleUniform``3(Deedle.Lookup,Microsoft.FSharp.Core.FSharpFunc{``0,``1},Microsoft.FSharp.Core.FSharpFunc{``1,``1},Deedle.Series{``0,``2})"]
- series
- Type: DeedleSeriesK1, V
[Missing <param name="series"/> documentation for "M:Deedle.SeriesModule.resampleUniform``3(Deedle.Lookup,Microsoft.FSharp.Core.FSharpFunc{``0,``1},Microsoft.FSharp.Core.FSharpFunc{``1,``1},Deedle.Series{``0,``2})"]
Type Parameters
- K1
- K2
- V
Return Value
Type:
SeriesK2,
SeriesK1,
V[Missing <returns> documentation for "M:Deedle.SeriesModule.resampleUniform``3(Deedle.Lookup,Microsoft.FSharp.Core.FSharpFunc{``0,``1},Microsoft.FSharp.Core.FSharpFunc{``1,``1},Deedle.Series{``0,``2})"]
See Also