Learn R Programming

ade4 (version 1.2-2)

steppe: Transect in the Vegetation

Description

This data set gives the presence-absence of 37 species on 515 sites.

Usage

data(steppe)

Arguments

source

Est�ve, J. (1978) Les m�thodes d'ordination : �l�ments pour une discussion. in J. M. Legay and R. Tomassone, editors. Biom�trie et Ecologie, Soci�t� Fran�aise de Biom�trie, Paris, 223--250.

Examples

Run this code
par(mfrow = c(3,1))
data(steppe)
w1 <- col(as.matrix(steppe$tab[,1:15]))
w1 <- as.numeric(w1[steppe$tab[,1:15] > 0])
w2 <- row(as.matrix(steppe$tab[,1:15]))
w2 <- as.numeric(w2[steppe$tab[,1:15] > 0])
plot(w2, w1, pch = 20)
plot(dudi.pca(steppe$tab, scan = FALSE, scale = FALSE)$li[,1],
    pch = 20, ylab = "PCA", xlab = "", type = "b")
plot(dudi.coa(steppe$tab, scan = FALSE)$li[,1], pch = 20, 
    ylab = "COA", xlab = "", type = "b")
par(mfrow = c(1,1))

Run the code above in your browser using DataLab