## ----include = FALSE----------------------------------------------------------
knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

## -----------------------------------------------------------------------------
library(dtsmartr)

dtsmartr(
  mtcars,
  options = dtsmartr_options(
    hidden_columns = c("mpg", "cyl")
  )
)

## -----------------------------------------------------------------------------
# Collapses headers to standard compact labels
dtsmartr(
  mtcars,
  options = dtsmartr_options(
    header_summary = FALSE
  )
)

