3

Can I compute Odds ratio coefficients and their 95% CI from a Poisson regression (GLM) using the exp function?

I have an ordinal dependent variable (i.e., a GS of a scale) and some independent variables which are either categorial or continuous (e.g., Age, Presence/absence of hypertension ...).

For each variable, in R, I did this:

#Poisson regression
model_name1 <-glm(dependentvariable ~ indepvariable1, 
                     family = poisson(), data=data_name)

#OR and 95% CI exp(coef(model_name1)) exp(confint(model_name1))

My question is: can estimate the ORs of a poisson regression (as for a logistic binomial regression)? Can I compute it with the function "exp" as I did? Thank you

Urb
  • 175
  • 5

1 Answers1

3

If you have a Poisson regression then exponentiating the coefficients gives you the multiplier corresponding to a unit change in the predictor variable. So if you measure age in years and the coefficient was 0.1 then a difference of one year would correspond to being $e^{0.1} = 1.10$ times higher scoring or about 10% more. It is not an odds ratio. Some software calls it an incidence rate ratio but you do not seem to have an outcome variable for which that interpretation makes much sense.

mdewey
  • 17,806