imputev {lme4breeding} | R Documentation |
This function is a very simple function to impute a numeric or character vector with the mean or median value of the vector.
imputev(x, method="median")
x |
a numeric or character vector. |
method |
the method to choose between mean or median. |
a numeric or character vector imputed with the method selected.
Giovanny Covarrubias-Pazaran
Giovanny Covarrubias-Pazaran (2024). lme4breeding: enabling genetic evaluation in the age of genomic data. To be submitted to Bioinformatics.
Douglas Bates, Martin Maechler, Ben Bolker, Steve Walker (2015). Fitting Linear Mixed-Effects Models Using lme4. Journal of Statistical Software, 67(1), 1-48.
The core function of the package lmebreed
set.seed(1253)
x <- rnorm(100)
x[sample(1:100,10)] <- NA
imputev(x)