Dear All;
When I run GEE model, I usually use 'Deviance' or 'log likelihood' to check the model fit or compare two models. However, when I change the different correlation-structures in the repeated statement, the 'Deviance' from the models with the two different correlation structures are the same. Do you have some suggestions for how to choose the best model for different correlation structures? Please see the models that I use.
proc genmod data=test;
class studyid allgp ;
model use=time allgp/ wald type3 d=bin;
repeated subject=studyid/ type=cs corrw ;
run;
proc genmod data=test;
class studyid allgp ;
model use=time allgp/ wald type3 d=bin;
repeated subject=studyid/ type=un corrw ;
run;
Thank.
Ruby.