imputemiss: Impute missing values in a variable

Description Usage Arguments Details Value Author(s) See Also Examples

View source: R/imputemiss.R

Description

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

Usage

1

Arguments

vector

a vector with missing values

value

the value to be used for imputation

Details

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

Value

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

Author(s)

Akash Jain

See Also

decile, pentile, outliers

Examples

1
2
3
4
5
# Scores vector
scores <- c(1, 2, 3, NA, 4, NA)

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

StatMeasures documentation built on May 2, 2019, 1:44 p.m.