Replaces all missing values in a vector with the previous or next non-missing value.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
IVector ReplaceMissingValues(
Direction direction,
int limit = 1073741824
)
Function ReplaceMissingValues (
direction As Direction,
Optional limit As Integer = 1073741824
) As IVector
IVector^ ReplaceMissingValues(
Direction direction,
int limit = 1073741824
)
abstract ReplaceMissingValues :
direction : Direction *
?limit : int
(* Defaults:
let _limit = defaultArg limit 1073741824
*)
-> IVector
Parameters
- direction
- Type: Extreme.DataAnalysisDirection
Specifies whether missing values should
be replaced by the previous (Forward) or next (Backward) non-missing
values. - limit (Optional)
- Type: SystemInt32
The maximum number of successive missing values
that may be filled.
Return Value
Type:
IVectorA new vector that has its missing values replaced.
Reference