I'm having trouble getting output of standardized pearson residuals and standardized deviance residuals in proc genmod. I was able to get non standardize residuals with this code:
output out = overall3 reschi=reschi p=predicted;
but get all missing values when using this code: output out = overallstd stdresdev=stdresdev p=predicted;
Thank you for any assistance
Thank you all-
SAS technical support clarified: The standardized residuals cannot be computed for GEE models. They depend on the deviance or Hessian matrix which isn't involved in the GEE estimation method
Please post your full code and log.
I don't have any issues in SAS 9.4M3. Note what SAS version you have, and what SAS/STAT version you have as well.
If the code below doesn't run successfully, include the log.
data drug;
input drug$ x r n @@;
datalines;
A .1 1 10 A .23 2 12 A .67 1 9
B .2 3 13 B .3 4 15 B .45 5 16 B .78 5 13
C .04 0 10 C .15 0 11 C .56 1 12 C .7 2 12
D .34 5 10 D .6 5 9 D .7 8 10
E .2 12 20 E .34 15 20 E .56 13 15 E .8 17 20
;
proc genmod data=drug;
class drug;
model r/n = x drug / dist = bin
link = logit
lrci;
output out = overallstd stdresdev=stdresdev p=predicted;
run;
I noticed you are using REPEAT statement, that mean you are fiting GEE.
Can you see the standardized residuals in the output ?
Hi - Yes, this is a GEE.
I'm wondering if The standardized residuals cannot be computed mathmatically for GEE models?
I get all missing values in the output.
Thank you!
If you can not see standardized residuals in RESULT printed by GEE, then you can not get it,
GEE take residuals as correlation.
Add option OBSTATS into MODEL statement and see if you can get Pearson residual, if you can obtain it then you can output it.
Thank you all-
SAS technical support clarified: The standardized residuals cannot be computed for GEE models. They depend on the deviance or Hessian matrix which isn't involved in the GEE estimation method
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.