Dear Statalist users,
I am conducting multiple imputations by predictive mean matching for 3 continuous variables with a monotone missingness pattern in a multilevel dataset. Since this procedure is non-iterative, I can not use trace plots to assess the imputed values. What are conventional methods to diagnose (visually and descriptively) non-iterative multiple imputations?
Here is the full imputation command (and the analysis model) I am using:
Thank you in advance for your help!
Best regards,
Daniel Rösler
I am conducting multiple imputations by predictive mean matching for 3 continuous variables with a monotone missingness pattern in a multilevel dataset. Since this procedure is non-iterative, I can not use trace plots to assess the imputed values. What are conventional methods to diagnose (visually and descriptively) non-iterative multiple imputations?
Here is the full imputation command (and the analysis model) I am using:
Code:
egen incrank = xtile(inc), n(100) by(country) gen incr_pdi = incrank * pdi gen incr_idv = incrank * idv mi set mlong mi register imputed incrank incr_pdi incr_idv mi register passive inc set seed 46352 mi impute monotone (pmm, knn(5)) incr* = i.sex i.age i.educ i.empstat i.country, add(70) rseed(46352) mi estimate: mixed sa incrank i.educ i.age i.sex i.empstat pdi idv gdp gini_disp incr_pdi incr_idv || country: incrank, mle
Best regards,
Daniel Rösler
Comment