Hello,
I'm looking for SAS code to calculate the difference between two groups using the Generalized Estimating Equation (GEE) with normal distribution assumptions, log link functions, unstructured variance-covariance structure and stratification factor (strata).
I found the following code in the SAS help but it doesn't specify the variance-covariance structure and strata options
proc genmod data=nor;
model y = x / dist = normal
link = log;
output out = Residuals
pred = Pred
resraw = Resraw
reschi = Reschi
resdev = Resdev
stdreschi = Stdreschi
stdresdev = Stdresdev
reslik = Reslik;
run;
Thanks
... View more