## ----include = FALSE----------------------------------------------------------
knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

## -----------------------------------------------------------------------------
library(dtsmartr)

# Explore the classic mtcars dataset
dtsmartr(mtcars)

## -----------------------------------------------------------------------------
# Launch in compact/minimal layout view
dtsmartr(
  data = mtcars,
  options = dtsmartr_options(
    header_density = "minimal",
    row_density    = "compact"
  )
)

## -----------------------------------------------------------------------------
# Forces a compact, clean grid view of a dataset
dtsmart_lite(mtcars, title = "Mtcars Lite")

