Chapter 1 Preparing for the workshop

All workshop materials are found at github.com/QCBSRworkshops/workshop03. This includes an R script which contains all code chunks shown in this book.

You should also make sure you have downloaded, installed, and loaded these packages:

To install them from CRAN, run:

# Install the required packages
install.packages("gridExtra")
install.packages("ggplot2")
install.packages("ggsignif")
install.packages("ggdendro")
install.packages("maps")
install.packages("mapproj")
install.packages("RColorBrewer")
install.packages("reshape2")
install.packages("GGally")
install.packages("patchwork")
# install.packages('plotly')
install.packages("palmerpenguins")

To load these packages, run:

# Load the required packages
library(gridExtra)
library(ggplot2)
library(ggsignif)
library(ggdendro)
library(maps)
library(mapproj)
library(RColorBrewer)
library(reshape2)
library(GGally)
library(patchwork)
# library(plotly)
library(palmerpenguins)