| FrameExtensionsFillMissingTRowKey, TColumnKey Method (FrameTRowKey, TColumnKey, Direction) |
Fill missing values in the data frame with the nearest available value
(using the specified direction). Note that the frame may still contain
missing values after call to this function (e.g. if the first value is not available
and we attempt to fill series with previous values). This operation can only be
used on ordered frames.
## Parameters
- `frame` - An input data frame 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.
[category:Missing values]
Namespace:
Deedle
Assembly:
Deedle (in Deedle.dll) Version: 1.2
Syntax public static Frame<TRowKey, TColumnKey> FillMissing<TRowKey, TColumnKey>(
this Frame<TRowKey, TColumnKey> frame,
Direction direction
)
Parameters
- frame
- Type: DeedleFrameTRowKey, TColumnKey
[Missing <param name="frame"/> documentation for "M:Deedle.FrameExtensions.FillMissing``2(Deedle.Frame{``0,``1},Deedle.Direction)"]
- direction
- Type: DeedleDirection
[Missing <param name="direction"/> documentation for "M:Deedle.FrameExtensions.FillMissing``2(Deedle.Frame{``0,``1},Deedle.Direction)"]
Type Parameters
- TRowKey
- TColumnKey
Return Value
Type:
FrameTRowKey,
TColumnKey[Missing <returns> documentation for "M:Deedle.FrameExtensions.FillMissing``2(Deedle.Frame{``0,``1},Deedle.Direction)"]
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
FrameTRowKey,
TColumnKey. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also