Alright, I just posted my own question - so I will pay it forward by tryig to tackle this one.
proc surveylogistic data=mydata varmethod=jk;
by _imputation_;
class X1 (ref='0') /param=ref;;
model Y (event='1') = X1;
ods output parameterestimates=ORs;
run;
proc mianalyze parms(classvar=classval)=ORs;
class X1;
modeleffects intercept X1;
run;
I hope this helps, I just grabbed this old piece of code from when I ran a comparable question.
... View more