Chapitre 1 Préparez-vous pour cet atelier
Tout le matériel de l’atelier se trouve sur github.com/QCBSRworkshops/workshop03. Cela inclut un script R qui rassemble tous les morceaux de code présentés dans ce livre.
Vous devriez vous assurer que vous avez téléchargé, installé et chargé les librairies R suivantes:
- gridExtra
- ggplot2
- ggsignif
- ggdendro
- maps
- mapproj
- RColorBrewer
- reshape2
- GGally
- patchwork
- plotly
- palmerpenguins
Pour les installer du CRAN, roulez le code suivant:
# Installez les librairies requises
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")
Ensuite, on doit charger les librairies avec le code suivant:
# 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)