This gt workshop will teach you a lot about what gt can do, and, itโ€™ll give you an opportunity to experiment with the package.

The goal of the workshop is to introduce you to a lot of examples and provide some time to generate some sample tables, learning bit-by-bit as we go.

Each module of the workshop focuses on a different family of functions, with relevant examples and exercises in each. They are all presented here as R Markdown (.Rmd) files with one file for each workshop module:

You can navigate to any of these and modify the code within the self-contained R Markdown code chunks. Entire R Markdown files can be knit to HTML, where a separate window will show the rendered document.

The gt Installation

Normally you would install gt on your system by using install.packages():

# install.packages("gt")

For this workshop, however, we are going to use the development version of gt and install it from GitHub with devtools::install_github().

# devtools::install_github("rstudio/gt")