knitr::opts_chunk$set(echo = TRUE)
library(gt)

Create a display table based on sleep.

gt(sleep) %>%
  fmt_scientific(columns = extra) %>%
  tab_footnote(
    footnote = "This is a footnote",
    locations = cells_body(columns = 1, rows = c(2, 3, 4))
  )


rstudio/gt documentation built on June 29, 2024, 6:54 a.m.