Hi all,
I received a comment from an anonymous reviewer on my article that I may need to further evaluate listwise deletion with multiple imputation. The reviewer further indicated that a cursory MI examination would be satisfactory and addressing in a footnote would be sufficient for revision.
Although they didn't specify, I believe the reviewer is concerned that of my two dichotomous variables are missing a substantial amount of data (say x5 and x6).
This is new territory for me and I would appreciate feedback on my approach...
I suppose I have a few questions:
I received a comment from an anonymous reviewer on my article that I may need to further evaluate listwise deletion with multiple imputation. The reviewer further indicated that a cursory MI examination would be satisfactory and addressing in a footnote would be sufficient for revision.
Although they didn't specify, I believe the reviewer is concerned that of my two dichotomous variables are missing a substantial amount of data (say x5 and x6).
This is new territory for me and I would appreciate feedback on my approach...
Code:
//Create random variables with missing data: clear set obs 1000 set seed 12345 gen y = runiformint(0,1) gen x1 = runiform() gen x2 = runiform(2, 4) gen x3 = runiform(0, 6) gen x4 = runiform() gen x5 = runiformint(0,1) gen x6 = runiformint(0,1) replace y = . if x2 > 3 replace x1 = . if x1 > 0.6 replace x4 = . if x2 < 2.5 replace x5 = . if x3 > 3 replace x6 = . if x4 > .6 //Multiple imputation: mi set mlong misstable summarize mi register imputed x5 x6 mi impute chained (logit) x5 x6 = y x1 x2 x3 x4, add(20) rseed(1234) force mi xeq 0 1 20: summarize x5 x6 mi estimate: logit y x1 x2 x3 x4 x5 x6
- Do I need to still register other variables missing data even if not of interest, i.e. y, x1, x4?
- Do I need to register 'regular' variables, i.e.
Code:
mi register regular x2 x3
- What if I have a quadradic term in my original analytical model (i.e. x1^2)? Should I include it in my MI model as well?
Comment