BookmarkSubscribeRSS Feed
Ksharp
Super User
Because it combine these two logit into one logit .

Interpret parameter estimate just like they are under a single Logit model ,I guess.



sld
Rhodochrosite | Level 12 sld
Rhodochrosite | Level 12

Check the documentation. EQUALSLOPES does not force intercepts to be equal. The number of intercept parameters is determined by the numbe of levels of the response variable.

Ksharp
Super User

Are you fitting generalize logit regression or cumulative logit regression?


data class;
 set sashelp.class end=last;
output;
if last then do;
 sex='N';weight=34.5;height=123.4;output;
  sex='N';weight=134.5;height=23.4;output;
 sex='N';weight=74.5;height=223.4;output;
 sex='N';weight=44.5;height=93.4;output;
end;
run;


proc logistic data=class;
model sex=weight height/link=glogit equalslopes;
run;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 17 replies
  • 4748 views
  • 0 likes
  • 3 in conversation