And what doesn't seem right?
Did you read my original response?
If you don't want to factor in the other measurement (interaction term or not) then you can run a model with each as the individual variable - two separate models, one with ala and one with aba.
@nottyprof wrote:
@Reeza I tried this code below and the output doesn’t seem right.
Proc logistic data=Participants;
Class Ala(ref= ‘1’) Aba(ref= ‘1’) / param=reference;
model Cas (ref= ‘0’) = Ala aba / scale=none aggregate;
run;
... View more