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)

spe <- doubs$fish
env <- doubs$env

Alternativement, à partir du paquet codep :

library(codep)
data(Doubs)

spe <- Doubs.fish
env <- Doubs.env

Téléchargez le script contenant la fonction coldiss() :

Vous devez également utiliser ces paquets :

list.of.packages <- c("ape", "ade4", "codep", "gclus", "vegan",
    "GGally", "PlaneGeometry", "remotes", "matlib", "MASS")

new.packages <- list.of.packages[!(list.of.packages %in% installed.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