🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 11-28-2020 05:18 PM
(1343 views)
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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).
NOTE: PROC LOGISTIC is fitting the generalized logit model. The logits modeled contrast each response category against the reference category (d=0).
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Show us the output, by including in your reply a screen capture using the camera icon. Do not attach a file.
--
Paige Miller
Paige Miller
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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).
NOTE: PROC LOGISTIC is fitting the generalized logit model. The logits modeled contrast each response category against the reference category (d=0).