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