Impute missing values in a variable
Takes in a vector and a value, and returns the vector with missing values imputed with that value
imputemiss(vector, value)
vector |
a vector with missing values |
value |
the value to be used for imputation |
imputemiss
imputes the missing (NA) values in the vector with a specified value.
The function simplifies the code for imputation.
vector
of the same class as input vector with imputed missing values
Akash Jain
# Scores vector scores <- c(1, 2, 3, NA, 4, NA) # Imputd scores vector scoresImp <- imputemiss(vector = scores, value = 5)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.