BookmarkSubscribeRSS Feed
UcheOkoro
Lapis Lazuli | Level 10

Hello,

 

Please, I need help interpreting the results of a multinomial longitudinal regression analysis. The outcome Complete_adherence2 variable has 4 levels which include ; complete adherence(1) (reference), hospital only adherence(2), outside hospital only adherence(3) and no adherence (4).   The predictor is ethnicity with levels; Hispanic (1) (reference) and non Hispanic (2). This data was collected weekly over a 21-week period.

The following are the results and SAS code.

Thank you!

UcheOkoro_0-1652815184402.png

 

UcheOkoro_1-1652815211565.png

 

 

 

 

 PROC GENMOD DATA=COVERED.Demographics desc;
CLASS  complete_adherence2(ref='4')  record_id ethnicity (ref='1');
MODEL complete_adherence2 = ethnicity 
/ DIST=MULTINOMIAL LINK=cLOGIT;
REPEATED SUBJECT=record_id/ corr=indep;
lsmeans ethnicity/  ILINK diff e cl oddsratio ;
RUN;

 

4 REPLIES 4
StatDave
SAS Super FREQ

These results should not be used and are not meaningful. When you fit an ordinal model, it is critical to examine the Response Profile table to verify that the response levels are in logical ascending or descending order. That will not be the case because you specified both the DESCENDING option and REF= for the response in the CLASS statement. It is best to never specify the response variable in the CLASS statement. Assuming that you want to model the probabilities of higher levels of the response variable, removing the response variable from the CLASS statement should show the response levels in the order 4, 3, 2, 1 in the Response Profile table. Then in the LSMEANS table, the Mean column gives you the predicted cumulative probabilities (Pr(4), Pr(4 or 3), Pr(4 or 3 or 2)) for each predictor level. The Differences table gives you the odds ratio estimate comparing the two predictor levels.

UcheOkoro
Lapis Lazuli | Level 10

Thank you for your response. The response profile is in order and as follow;

UcheOkoro_0-1652816498912.png

Please, how would you interpret the odds ratio for the predictor? If it were a 2 level outcome variable that is pretty straight forward but this has 4 levels.

 

Thank you,

StatDave
SAS Super FREQ
Now that the response levels are in logical order, you can use the results. As I stated, the odds ratio estimate is the estimated change in odds comparing the two predictor levels. This is the same as for a binary response ... since this is a proportional odds model the change in odds is the same regardless of the logit.
UcheOkoro
Lapis Lazuli | Level 10

Please, could you interpret the odds ratio I posted earlier to make it clearer?

Thank you,

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 396 views
  • 1 like
  • 2 in conversation