I am researching how to use multiple imputation results. The following is my understanding, and please let me know if there're mistakes.
Suppose you have a data set with missing values, and you want to conduct a regression analysis. You may perform multiple imputation for m = 5 times, and for each imputed data set (5 imputed data sets now) you run a regression analysis, then "pool" the coefficient estimates from these m = 5 models via Rubin's rules (or use R package "pool").
My question is that, in mice you have a function complete()
, and the manual says you can extract completed data set by using complete(object)
.
But if I use mice for m = 5 times, does it still make sense to use complete()
? Which imputation results will complete()
get for me?
Also, does it make sense if I only use mice with m = 1? Thank you.