View source: R/deprecated_defunct.R
na.ma | R Documentation |
na_ma
instead.na.ma is replaced by na_ma
.
The functionality stays the same. The new name better fits modern R code
style guidelines (which prefer _ over . in function names).
na.ma(x, k = 4, weighting = "exponential", maxgap = Inf, ...)
x |
Numeric Vector ( |
k |
integer width of the moving average window. Expands to both sides of the center element e.g. k=2 means 4 observations (2 left, 2 right) are taken into account. If all observations in the current window are NA, the window size is automatically increased until there are at least 2 non-NA values present. |
weighting |
Weighting to be used. Accepts the following input:
|
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.