Hello, I have run 10 imputed datasets and now would like to run proc mi analyze to combine my results for my analysis. I have a ordinal, categorical outcome variable so i will be using a proc logistic with a link=glogit function. So far I have done the code below and the test works but it only gives me the pooled estimates and not the estimates for each category in my outcome variable. I would like to know how to get each estimate for the 5 categories present in my outcome variable. thank you for your help and please find the code below: proc logistic data=impute_F; class traj_tabac(ref = "1") p91_cbcl_int_c(ref="0")/param=ref; model traj_tabac (event = "1") =p91_cbcl_int_c /link=glogit; ODS OUTPUT parameterestimates=tbint91; BY _Imputation_; RUN; PROC MIANALYZE parms(classvar=classval)=tbint91; CLASS p91_cbcl_int_c; MODELEFFECTS p91_cbcl_int_c; RUN;
... View more