imputev {lme4breeding} | R Documentation |
Imputing a numeric or character vector
Description
This function is a very simple function to impute a numeric or character vector with the mean or median value of the vector.
Usage
imputev(x, method="median")
Arguments
x |
a numeric or character vector. |
method |
the method to choose between mean or median. |
Value
- $x
a numeric or character vector imputed with the method selected.
Author(s)
Giovanny Covarrubias-Pazaran
References
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.
See Also
The core function of the package lmebreed
Examples
set.seed(1253)
x <- rnorm(100)
x[sample(1:100,10)] <- NA
imputev(x)
[Package lme4breeding version 1.0.30 Index]