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-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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
  • 1776 views
  • 4 likes
  • 2 in conversation