ID Age Ala Aba Cas 1 12 1 1 0 2 26 3 5 0 3 50 2 3 1 4 15 1 6 1 5 26 1 23 0 6 52 2 6 0 7 32 3 5 0 8 30 2 8 1 9 25 1 2 0 10 63 3 22 1 Aba (range from 1-24) Ala (1-low, 2-medium, 3-high) Cas (0 - Yes, 1-No) Proc logistic data=Participants; Class Ala(ref= ‘1’) Aba(ref= ‘1’) / param=reference; model Cas (ref= ‘0’) = Ala aba / scale=none aggregate; run; what code can I use to construct a logistic regression to find an association of Cas on Ala and Aba individually? I have the above code now but it doesn't seem right.
... View more