jingju11 发表于 2012-11-12 01:24 
logor= gives the Alternative Logistic Regression Algorithm for repeated measurements, which is irrel ...
这个回答是靠谱的。
proc genmod data=fmpr descend;
class fno isb4(ref="3") /param=ref;
model glucose=isb4 /dist=bin;
repeated subject=fno/corr=un;
estimate "OR:0 vs 3" isb4 1 0 0 -1/exp;/**第一组与第三组(对照)相比的OR**/;
run;