Export exponentiated coefficients from a logistic regression in R

132 views Asked by At

I use etable to export my regression results to latex. Since I run a logistic regression (using fixest package), I would like to export exponentiated coefficients (odds ratios). In Stata I can simply type "or" at the end of a regression. How can I do this in R?

I tried m1[["coefficients"]][["ln_gft"]] <- exp(m1[["coefficients"]][["ln_gft"]]) however this only affects the coefficients, not the standard errors.

0

There are 0 answers