I am using tbl_regression from the gtsummary package. When generating an output table from linear regression there is a 1CI = Confidence Interval footnote appearing in the bottom row.
Is there a way to supress this footnote in tbl_regression?
Use modify_footnote(everything() ~ NA, abbreviation = TRUE)
to delete abbrev. footnotes
library(dplyr)
library(gtsummary)
my_table <-
lm(mpg ~ disp, mtcars) %>%
tbl_regression(exponentiate = FALSE) %>%
modify_footnote(everything() ~ NA, abbreviation = TRUE)
my_table
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With