mean_impute | R Documentation |
Replace missing values of data set by the mean of other observed values.
mean_impute(X)
X |
An |
A complete data matrix with missing values imputed accordingly.
Schafer, J. L. and Graham, J. W. (2002). Missing data: our view of the state of the art.
Psychological Methods, 7(2):147–177.
Little, R. J. A. and Rubin, D. B. (2020). Statistical analysis with missing data.
Wiley Series in Probability and Statistics. Wiley, Hoboken, NJ, 3rd edition
X <- matrix(nrow = 6, ncol = 3, byrow = TRUE, c(
NA, 2, 2,
3, NA, 5,
4, 3, 2,
NA, NA, 3,
7, 2, NA,
NA, 4, 2
))
mean_impute(X)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.