2

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?

SunWuKung
  • 527
  • 4
  • 16

1 Answers1

4

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

enter image description here

TarJae
  • 72,363
  • 6
  • 19
  • 66