I am making my demographics table using gtsummary. I want the confidence interval in my table to appear between [] not (). For example,
trial %>%
select(response, grade) %>%
tbl_summary(statistic = all_categorical() ~ "{p}%",
missing = "no") %>%
modify_footnote(everything() ~ NA) %>%
add_ci()
This produces:
I appreciate your help