Hi, I would like to check interaction between 2 categorical variables. (outcome = drug prescription. I want to see is there any interaction variables with 'gender' variable) So I came up with following code; proc logistic data = hira.new_161718_outp_drugcode8; model drug_code2 (event = '1') = gender age institution region mcode year gender*age; run; and I will do this for other variables (gender*institution, gender*region, gender*mcode, gener*year) Does my approach correct? Or is there any way that I can see this at once? Does this code would allow me to do this? proc logistic data = hira.new_161718_outp_drugcode8; model drug_code2 (event = '1') = gender age institution region mcode year gender*age gender*institution gender*region gender*mcode gener*year); run; And when I run the code, I get following result; (I attached result screen) Please check if my understanding is correct; I interpret this data that there is weak interaction between gender and age, as estimate is -0.00001. Thank you.
... View more