BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
ChuksManuel
Pyrite | Level 9

Hello programmers,

I am trying to test for proportional odds assumption using sas proc surveylogistic. It seems I am able to do this using proc logistic. But I want to account for the complex sampling in my data, so surveylogistic is a given. Is there a way proc survey logistic implements this? I am doing an ordinal logistic regression. 

proc logistic data=asth ;
class MDD (Ref= '0') mold (Ref= '0') age_new (Ref= '1') smoker(Ref= '0') gender (ref='0')  BMI (ref='0') / param=ref;
model activity (descending) = MDD mold age_new smoker gender BMI ;
run;

proc surveylogistic data=asth;
strata strt ;
cluster psu ;
weight wgt;
class MDD (Ref= '0') mold (Ref= '0') age_new (Ref= '1') smoker(Ref= '0') gender (ref='0')  BMI (ref='0') / param=ref;
model activity (descending) = MDD mold age_new smoker gender BMI ;
run;


 

1 ACCEPTED SOLUTION

Accepted Solutions
SAS_Rob
SAS Employee

In previous releases SAS reported a test of the Proportional Odds Model in SURVEYLOGISTIC.  But there are some serious theoretical questions that have been raised about using the Test for Proportional Odds  for survey data that have brought into question how and even if this should be reported for survey data. Until those issues are resolved, SAS removed it from the output.  At the very least it should be using the survey adjusted variance and not the inverse of the information matrix the way LOGISTIC does. 

View solution in original post

4 REPLIES 4
ChuksManuel
Pyrite | Level 9
And i tried the template code in the SAS Proc surveylogistic handbook https://support.sas.com/documentation/onlinedoc/stat/131/surveylogistic.pdf. And it did not give me the proportional odds assumption test in the output. Did this change?
SAS_Rob
SAS Employee

In previous releases SAS reported a test of the Proportional Odds Model in SURVEYLOGISTIC.  But there are some serious theoretical questions that have been raised about using the Test for Proportional Odds  for survey data that have brought into question how and even if this should be reported for survey data. Until those issues are resolved, SAS removed it from the output.  At the very least it should be using the survey adjusted variance and not the inverse of the information matrix the way LOGISTIC does. 

ChuksManuel
Pyrite | Level 9
Thank you for the response!
bherbert
Calcite | Level 5

Could you please provide a reference for this?

SAS Innovate 2025: Register Now

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!

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
  • 4 replies
  • 856 views
  • 1 like
  • 3 in conversation