Replaces each missing value by drawing a random sample between two given bounds.
na_random(x, lower_bound = NULL, upper_bound = NULL, maxgap = Inf)
Lower bound for the random samples. If nothing or NULL is set min(x) will be used.
Upper bound for the random samples. If nothing or NULL is set man(x) will be used.
Maximum number of successive NAs to still perform imputation on. Default setting is to replace all NAs without restrictions. With this option set, consecutive NAs runs, that are longer than 'maxgap' will be left NA. This option mostly makes sense if you want to treat long runs of NA afterwards separately.
Vector (vector
) or Time Series (ts
)
object (dependent on given input at parameter x)
Replaces each missing value by drawing a random sample between two given bounds. The default bounds are the minimum and the maximum value in the non-NAs from the time series. Function uses runif function to get the random values.
na_interpolation
,
na_kalman
, na_locf
,
na_ma
, na_mean
,
na_replace
,
na_seadec
, na_seasplit
# NOT RUN {
# Prerequisite: Create Time series with missing values
x <- ts(c(2, 3, NA, 5, 6, NA, 7, 8))
# Example 1: Replace all NAs by random values that are between min and max of the input time series
na_random(x)
# Example 2: Replace all NAs by random values between 1 and 10
na_random(x, lower_bound = 1, upper_bound = 10)
# Example 3: Same as example 1, just written with pipe operator
x %>% na_random()
# }
Run the code above in your browser using DataLab