Hello!
I need some help interpretating an odds ratio SAS output.
Below is the code. The hot_spot variable is coded as 1= yes, its a hypertension hotspot, 0 = no, it is not a hypertension hotspot. The rural variable is coded as 0= not rural and 1=rural.
proc logistic data=work.research_lr;
class rural / PARAM = REF;
model hot_spot (event='1') = rural;
run;
And this is the output:
What would be the correct interpretation?
Thanks in advance!
I think your life will be easier if you use the DESCENDING option in the proc logistic statement -- that will make 0 the referent ("no") category for all binary variables. Right now, you've currently got 0 as the referent group for your dependent (left hand side) variable (because of the event= syntax) and *1* as the referent group for the rural variable. So interpretation is pretty non-intuitive at the moment. Instead, do this:
proc logistic data=work.research_lr DESCENDING;
model hot_spot = rural;
run;
Doing the above should result in an odds ratio that's the reciprocal of what you currently have -- 1/0.627 = 1.595
An OR of 1.595 (assuming a confidence interval that does not include 1) would mean that rurality is predictive of hot spot hypertension. More specifically, the interpretation is that the odds of hypertension are 1.6X higher for rural people than for non-rural people.
Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.