Hi Friend,
I am new to multiple imputation procedure.
I have a repeated measure data sets (presenting 2 in 200 observation here). Group is not missing for all the participants while baseline, viit2, visit3, or visit 4 can be missing. I plan to use the proc mi code as below.
id | group | baseline | visit2 | visit3 | visit4 |
1 | 1 | 82.00 | 79.70 | 76.60 | 77.10 |
2 | 2 | 87.70 | 88.95 | 84.50 | . |
proc mi data=a out = a_mi seed=21355417 nimpute=30 ;
var basline visit2 visit3 visit4 group ;
run;
I am confused whether monotone, mcmc, or fcs statement is necessary for this imputation process?
Thanks.