I've never personally done it, but I believe you can use proc glimmix with logistic assumptions. proc glimmix data= survey;
class dv;
model dv = iv1 iv2 / dist=binomial link=logistic obsweight=weightvariable oddsratio solution;
run; If binomial doesn't work, it might be bernoulli, which will give the same result. I can't remember if glimmix allows both.
... View more