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;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 3003 views
  • 0 likes
  • 3 in conversation