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-2024.png

Today is the last day to save with the early bird rate! Register today for just $695 - $100 off the standard rate.

 

Plus, pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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