View source: R/deprecated_defunct.R
na.random | R Documentation |
na_random
instead.na.random is replaced by na_random
.
The functionality stays the same. The new name better fits modern R code
style guidelines (which prefer _ over . in function names).
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. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.