How to calculate exp function in add_ci function

I had data about Immunity value. I had Log transforming Immunit data to calculate. This is my code:

logTrans <- lien %>% dplyr::select(c3, Age, Immunity) %>%
mutate(gender = ifelse(lien$c3 == 1, "Male", ifelse(lien$c3 == 2, "Female", NA))) %>%
mutate(logImmunity = log(Immunity))

Duoi10lien4 <- logTrans %>% dplyr::filter(Age <=10) %>%
dplyr::select(logImmunity) %>%
tbl_summary(missing = "no",
statistic = all_continuous() ~ "{mean} ({sd})") %>%
add_ci()

Now i want to calculate the exp(confidence interval) in package (gtsummary)
Pls help me

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.