imputeUnivariate {missRanger} | R Documentation |
Fills missing values of a vector, matrix or data frame by sampling with replacement from the non-missing values. For data frames, this sampling is done within column.
imputeUnivariate(x, v = NULL, seed = NULL)
x |
A vector, matrix or data frame. |
v |
A character vector of column names to impute (only relevant if |
seed |
An integer seed. |
x
with imputed values.
imputeUnivariate(c(NA, 0, 1, 0, 1))
head(imputeUnivariate(generateNA(iris)))