Learn R Programming

missRanger (version 2.6.1)

imputeUnivariate: Univariate Imputation

Description

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.

Usage

imputeUnivariate(x, v = NULL, seed = NULL)

Value

x with imputed values.

Arguments

x

A vector, matrix or data frame.

v

A character vector of column names to impute (only relevant if x is a data frame). The default NULL imputes all columns.

seed

An integer seed.

Examples

Run this code
imputeUnivariate(c(NA, 0, 1, 0, 1))
head(imputeUnivariate(generateNA(iris)))

Run the code above in your browser using DataLab