Required R Packages

The book uses several R packages, including:

install.packages(c(
  "bookdown",
  "tidyverse",
  "ggplot2",
  "readxl",
  "lubridate",
  "stringr",
  "purrr",
  "knitr",
  "kableExtra",
  "here",
  "flexdashboard"
))

Load commonly used packages with:

library(tidyverse)
library(ggplot2)
library(readxl)
library(lubridate)
library(stringr)
library(purrr)