Hello, I am trying to run a multi variable logistic regression model predicting departure from position (yes/no) using perceived culture around alcohol as the main predictor with sex, age, race, hazardous alcohol use, and job satisfaction as covariates. I was interested in analyzing hazardous alcohol use as a moderator and found evidence that there is an interaction between alcohol use and perceived culture. My question is, when I ran the regression the output did not show the ORs for hazardous alcohol use or perceived culture (scored from 0-4 based on how many items endorsed). Is there an option I am missing to get those estimates? (Code below) Proc logistic data=c_final: Class sex agecat race hazardousalc jobsat/param=ref; (I specified the reference groups in my code but omitted them for a reason on this forum) Model departure = sex agecat race hazardousalc jobsat alcoholculture_score hazardousalc*alcoholculture_score/expb; Run;
... View more