Click or drag to resize
SeriesModuleFillMissingBetweenK, T Method
Fill missing values only between `startKey` and `endKey`, inclusive. ## Parameters - `series` - An input series that is to be filled - `direction` - Specifies the direction used when searching for the nearest available value. `Backward` means that we want to look for the first value with a smaller key while `Forward` searches for the nearest greater key. - `startKey` - the lower bound at which values should be filled - `endKey` - the upper bound at which values should be filled [category:Missing values]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Series<K, T> FillMissingBetween<K, T>(
	K startKey,
	K endKey,
	Direction direction,
	Series<K, T> series
)

Parameters

startKey
Type: K

[Missing <param name="startKey"/> documentation for "M:Deedle.SeriesModule.FillMissingBetween``2(``0,``0,Deedle.Direction,Deedle.Series{``0,``1})"]

endKey
Type: K

[Missing <param name="endKey"/> documentation for "M:Deedle.SeriesModule.FillMissingBetween``2(``0,``0,Deedle.Direction,Deedle.Series{``0,``1})"]

direction
Type: DeedleDirection

[Missing <param name="direction"/> documentation for "M:Deedle.SeriesModule.FillMissingBetween``2(``0,``0,Deedle.Direction,Deedle.Series{``0,``1})"]

series
Type: DeedleSeriesK, T

[Missing <param name="series"/> documentation for "M:Deedle.SeriesModule.FillMissingBetween``2(``0,``0,Deedle.Direction,Deedle.Series{``0,``1})"]

Type Parameters

K
T

Return Value

Type: SeriesK, T

[Missing <returns> documentation for "M:Deedle.SeriesModule.FillMissingBetween``2(``0,``0,Deedle.Direction,Deedle.Series{``0,``1})"]

See Also