BookmarkSubscribeRSS Feed
mandkhoie
Calcite | Level 5


Hello,

I am conducting a survey design based analysis using SURVEYLOGISTIC. I am attempting to obtain standardized Pearsons and standardized deviance residuals to conduct model diagnostics. However, it appears SURVEYLOGISTIC doesn't have these features. Alternatively, I have tried running the model using PROC LOGISTIC and the standardized residuals range between -2 to +16 (that is not good but I am not sure doing diagnostics using PROC LOGISTIC is appropriate). I would like to check if I would get the same standardized results using SURVEYLOGISTIC. Any suggestions or help would be great. Thank you.

proc surveylogistic data = temp;

class Y(ref="NO") X1(ref=FIRST) X2 (ref= FIRST) /PARAM=GLM;

model Y = X1 X2 /link=logit ;

WEIGHT normweight;

output out=out p=predicted stdresdev=stdresmodfs stdreschi=s;

; run;

ERROR 22-322: Syntax error, expecting one of the following: ;, /, CUMPRED, L,


              LOWER, OUT, P, PRED, PREDICTED, PREDPROBS, PROB, STDXBETA, U,


              UPPER, XBETA.


1 REPLY 1
SteveDenham
Jade | Level 19

Looks like a post processing approach is needed.  If the output dataset includes PRED, XBETA and STDXBETA you can calculate the standardized deviance residua asl (observed - PRED)/STDXBETA, and work from there I think.

Steve Denham

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

What is ANOVA?

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.

Discussion stats
  • 1 reply
  • 2296 views
  • 4 likes
  • 2 in conversation