na_random | R Documentation |
Replaces each missing value by drawing a random sample between two given bounds.
na_random(x, lower_bound = NULL, upper_bound = NULL, maxgap = Inf)
x |
Numeric Vector ( |
lower_bound |
Lower bound for the random samples. If nothing or NULL is set min(x) will be used. |
upper_bound |
Upper bound for the random samples. If nothing or NULL is set man(x) will be used. |
maxgap |
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. |
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.
Vector (vector
) or Time Series (ts
)
object (dependent on given input at parameter x)
Steffen Moritz
na_interpolation
,
na_kalman
, na_locf
,
na_ma
, na_mean
,
na_replace
,
na_seadec
, na_seasplit
# 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()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.