From here: R: Calculate and interpret odds ratio in logistic regression
After running logistic regression model with glm with logit link to convert logits to odds ratio, you can exponentiate it:
exp(coef(m))
To convert logits to probabilities, you can use the function:
exp(m)/(1+exp(m))
Question: How to do the same with quasibinomial regression with log (family=quasibinomial(log)
) and quasipoison regression (family=quasipoisson("log")
)? How can I convert logs to odds ratio and logs to probabilities if I use log link?
I am using survey package for R (for most of regression calculations it uses glm).