Statistical Procedures

Programming the statistical procedures from SAS
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
pink_poodle
Barite | Level 11

I am doing a multinomial logistic regression on outcome variable d. This variable has three levels: 0, 1 and 2. In the code below, is the effect of predictor a in d-levels 1 and 2 each compared to effect of a in d-level 0? 

proc logistic data=test;
class d (ref='0') / param= ref;
model d = a / link=glogit clodds=pl;

run;

Thank you!

1 ACCEPTED SOLUTION

Accepted Solutions
pink_poodle
Barite | Level 11
Just as I was going to copy the output, SAS answered my question in the log:
NOTE: PROC LOGISTIC is fitting the generalized logit model. The logits modeled contrast each response category against the reference category (d=0).

View solution in original post

2 REPLIES 2
PaigeMiller
Diamond | Level 26

Show us the output, by including in your reply a screen capture using the camera icon. Do not attach a file.

--
Paige Miller
pink_poodle
Barite | Level 11
Just as I was going to copy the output, SAS answered my question in the log:
NOTE: PROC LOGISTIC is fitting the generalized logit model. The logits modeled contrast each response category against the reference category (d=0).

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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
  • 2 replies
  • 1344 views
  • 0 likes
  • 2 in conversation