Learn R Programming

StatMeasures (version 1.0)

imputemiss: Impute missing values in a variable

Description

Takes in a vector and a value, and returns the vector with missing values imputed with that value

Usage

imputemiss(vector, value)

Arguments

vector
a vector with missing values
value
the value to be used for imputation

Value

vector of the same class as input vector with imputed missing values

Details

imputemiss imputes the missing (NA) values in the vector with a specified value. The function simplifies the code for imputation.

See Also

decile, pentile, outliers

Examples

Run this code
# Scores vector
scores <- c(1, 2, 3, NA, 4, NA)

# Imputd scores vector
scoresImp <- imputemiss(vector = scores, value = 5)

Run the code above in your browser using DataLab