-Dataset file name; pa6 -Predictors; sedfive (0~4 categories) [meaning; sedentary behavior quantile, thus, getting sedentary from 0 to 4] (0;reference) -dependent; htn (0~3 categories) [meaning; blood pressure normal (0;reference)-slightly high (1)-prehypertension(2)-hypertension(3)] -I used the sas code below for above mentioned variables' relationships proc logistic data=pa6; class htn(ref="0") sedfive(ref="0") / param=ref; model htn=sedfive / clodds=pl; run; -then I got the output as attached. -What does this output tell me? (How can I interpret it?) -Do I have to use 'link=glogit' instead of 'clodds=pl'?
... View more