I have a a data set where the dependent variable has 4 levels (low, low-medium, medium, and high) with three independent continuous variables. So my code currently looks like this: proc logistic data=updated; model groupedSet = bioMarker age bmi; run; the output gives me 3 intercepts, which is great, but only gives me 1 estimate and odds ratio estimate for the bioMarker, age, and bmi. Is there a way to see what the predicted probability is for the bioMarker at each level of the groupedSet? I understand the main problem is because it is a continuous variable. So is there any way around that? I've been trying to find some papers on it but am have bad luck so far. Thanks.
... View more