| FrameModuleFillMissingR, C Method |
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<R, C> FillMissing<R, C>(
Direction direction,
Frame<R, C> frame
)
Parameters
- direction
- Type: DeedleDirection
[Missing <param name="direction"/> documentation for "M:Deedle.FrameModule.FillMissing``2(Deedle.Direction,Deedle.Frame{``0,``1})"]
- frame
- Type: DeedleFrameR, C
[Missing <param name="frame"/> documentation for "M:Deedle.FrameModule.FillMissing``2(Deedle.Direction,Deedle.Frame{``0,``1})"]
Type Parameters
- R
- C
Return Value
Type:
FrameR,
C[Missing <returns> documentation for "M:Deedle.FrameModule.FillMissing``2(Deedle.Direction,Deedle.Frame{``0,``1})"]
See Also