Hi,
Does anyone know if there is a way to get odds ratios (and 95% confidence intervals) for a multiple logistic regression model where data was imputed with proc mi (fcs logistic regression method) and combined with proc mianalyze?
This is the code I used:
PROC MIANALYZE PARMS(CLASSVAR=CLASSVAL)=temp.parmsout covb(effectvar=stacking)=temp.covbout;
CLASS homeowner carowner Ethnicity;
MODELEFFECTS age_reg homeowner carowner Ethnicity;
RUN;
This gives me the pooled parameter estimates from my 10 imputations and the variance information, but wondering if I can get pooled odds ratios? Or can I transform the estimates into odds ratios?
Any help would be much appreciated.
Many Thanks