Install R packages

For this workshop, you’ll need to install several R packages. This page will guide you through installing the packages we will use.

To do so, please run the following in the your R console:

from_cran <- c(
  "DT", 
  "glue", 
  "flexdashboard", 
  "rmarkdown",
  "rsconnect",
  "shiny", 
  "shinydashboard", 
  "shinythemes", 
  "tidyverse",
  "xaringan"
  )
install.packages(from_cran, dependencies = TRUE)