1  Introduction

1.1 Prerequisites

Following software need to be installed on your computer to work with the examples shown in this online book:

Following software are only needed for specific chapters/examples:

1.2 Frequently used R packages

See also @ref(Installing R packages)

Following R packages will be often used in the given examples and it is thus recommended to install them before starting with this book

  • here
  • tidyverse(installs ggplot2, dplyr, tidyr, tibble, readr, forcats, stringr, purrr)
  • readxl
  • remotes

Run this in your R command line to install these packages:

pkg_list <- c("here", "tidyverse", "readxl", "remotes")
install.packages(pkg_list)