Chapitre 2 Préparez-vous pour cet atelier
Pour préparer cet atelier, vous devez suivre les étapes suivantes :
Télécharger les données nécessaires à cet atelier :
Leurs données peuvent également être récupérées à partir du paquet ade4
:
library(ade4)
data(doubs)
<- doubs$fish
spe <- doubs$env env
Alternativement, à partir du paquet codep
:
library(codep)
data(Doubs)
<- Doubs.fish
spe <- Doubs.env env
Téléchargez le script contenant la fonction coldiss()
:
Vous devez également utiliser ces paquets :
<- c("ape", "ade4", "codep", "gclus", "vegan",
list.of.packages "GGally", "PlaneGeometry", "remotes", "matlib", "MASS")
<- list.of.packages[!(list.of.packages %in% installed.packages()[,
new.packages "Package"])]
if (length(new.packages) > 0) {
install.packages(new.packages, dependencies = TRUE)
print(paste0("The following package was installed:", new.packages))
else if (length(new.packages) == 0) {
} print("All packages were already installed previously")
}
## [1] "The following package was installed:ape"
## [2] "The following package was installed:ade4"
## [3] "The following package was installed:codep"
## [4] "The following package was installed:gclus"
## [5] "The following package was installed:vegan"
## [6] "The following package was installed:GGally"
## [7] "The following package was installed:PlaneGeometry"
## [8] "The following package was installed:remotes"
## [9] "The following package was installed:matlib"
# Chargement de toutes les bibliothèques nécessaires en une
# seule fois
invisible(lapply(list.of.packages, library, character.only = TRUE,
quietly = TRUE))
# source(file.choose()) # utilisez coldiss.R que vous avez
# téléchargé dans votre propre répertoire