Learn R Programming

ade4 (version 1.2-2)

oribatid: Oribatid mite

Description

This data set contains informations about environmental control and spatial structure in ecological communities of Oribatid mites.

Usage

data(oribatid)

Arguments

source

Data prepared by P. Legendre Pierre.Legendre@umontreal.ca and D. Borcard borcardd@magellan.umontreal.ca starting from http://www.fas.umontreal.ca/biol/casgrain/fr/labo/oribates.html

Details

Variables of oribatid$envir are the following ones : substrate: a factor with seven levels that describes the nature of the substratum shrubs: a factor with three levels that describes the absence/presence of shrubs topo: a factor with two levels that describes the microtopography density: substratum density ($g.L^{-1}$) water: water content of the substratum ($g.L^{-1}$)

References

Borcard, D., and Legendre, P. (1994) Environmental control and spatial structure in ecological communities: an example using Oribatid mites (Acari Oribatei). Environmental and Ecological Statistics, 1, 37--61.

Borcard, D., Legendre, P., and Drapeau, P. (1992) Partialling out the spatial component of ecological variation. Ecology, 73, 1045--1055.

Examples

Run this code
data(oribatid)
ori.xy <- oribatid$xy[,c(2,1)]
names(ori.xy) <- c("x","y")
plot(ori.xy,pch = 20, cex = 2, asp = 1)

if (require(tripack, quiet = TRUE)) {
  if (require(spdep, quiet = TRUE)) {
    plot(voronoi.mosaic(ori.xy), add = TRUE)
    s.label(ori.xy, add.p = TRUE,
     neig = nb2neig(knn2nb(knearneigh(as.matrix(ori.xy), 3))),
     clab = 0)
    }
  }

Run the code above in your browser using DataLab