fill_na {lfstat} | R Documentation |
Interpolation NA values in a vector
Description
This function is a tiny wrapper around approx
which allows to contain the maximum number of NA values in a row that will be filled by interpolation. This is useful to obtain regular time series.
Usage
fill_na(x, max.len = Inf, ...)
Arguments
x |
a vector, possibly containing NA values |
max.len |
an integer vector of length one, constraining the number of of consecutive NA observations which will get replaced with interpolated values |
... |
further arguments, passed on to |
Value
a vector
See Also
Examples
x <- 1:20
x[c(2, 3, 6, 11:15)] <- NA
fill_na(x, max.len = 2)
[Package lfstat version 0.9.12 Index]