ade4 (version 1.7-15)

rpjdl: Avifauna and Vegetation

Description

This data set gives the abundance of 51 species and 8 environmental variables in 182 sites.

Usage

data(rpjdl)

Arguments

Format

rpjdl is a list of 5 components.

fau

is the faunistic array of 182 sites (rows) and 51 species (columns).

mil

is the array of environmental variables : 182 sites and 8 variables.

frlab

is a vector of the names of species in French.

lalab

is a vector of the names of species in Latin.

lab

is a vector of the simplified labels of species.

References

See a data description at http://pbil.univ-lyon1.fr/R/pdf/pps048.pdf (in French).

Examples

Run this code
# NOT RUN {
data(rpjdl)
coa1 <- dudi.coa(rpjdl$fau, scann = FALSE)
pca1 <- dudi.pca(rpjdl$fau, scal = FALSE, scann = FALSE)

if(adegraphicsLoaded()) {
  g1 <- s.distri(coa1$l1, rpjdl$fau, xax = 2, yax = 1, starSize = 0.3, 
                 ellipseSize = 0, plab.cex = 0)
  g2 <- s.distri(pca1$l1, rpjdl$fau, xax = 2, yax = 1, starSize = 0.3, 
                 ellipseSize = 0, plab.cex = 0)
} else {
  s.distri(coa1$l1, rpjdl$fau, 2, 1, cstar = 0.3, cell = 0)
  s.distri(pca1$l1, rpjdl$fau, 2, 1, cstar = 0.3, cell = 0)
}

caiv1 <- pcaiv(coa1, rpjdl$mil, scan = FALSE)
plot(caiv1)
# }

Run the code above in your browser using DataCamp Workspace