Because it combine these two logit into one logit . Interpret parameter estimate just like they are under a single Logit model ,I guess.
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.
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;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.