| coleo {ade4} | R Documentation |
This data set coleo (coleoptera) is a a fuzzy biological traits table.
data(coleo)
coleo is a list of 5 components.
Bournaud, M., Richoux, P. and Usseglio-Polatera, P. (1992) An approach to the synthesis of qualitative ecological information from aquatic coleoptera communities. Regulated rivers: Research and Management, 7, 165–180.
data(coleo)
op <- par(no.readonly = TRUE)
coleo.fuzzy <- prep.fuzzy.var(coleo$tab, coleo$col.blocks)
fca1 <- dudi.fca(coleo.fuzzy, sca = FALSE, nf = 3)
par(mfrow = c(3,3))
indica <- factor(rep(names(coleo$col), coleo$col))
for (j in levels(indica)) s.distri (fca1$l1,
coleo$tab[,which(indica==j)], clab = 1.5, sub = as.character(j),
cell = 0, csta = 0.5, csub = 3,
label = coleo$moda.names[which(indica == j)])
par(op)
par(mfrow = c(1,1))
> library(ade4) > ### Name: coleo > ### Title: Table of Fuzzy Biological Traits > ### Aliases: coleo > ### Keywords: datasets > > ### ** Examples > > data(coleo) > op <- par(no.readonly = TRUE) > coleo.fuzzy <- prep.fuzzy.var(coleo$tab, coleo$col.blocks) 2 missing data found in block 1 1 missing data found in block 3 2 missing data found in block 4 > fca1 <- dudi.fca(coleo.fuzzy, sca = FALSE, nf = 3) > par(mfrow = c(3,3)) > indica <- factor(rep(names(coleo$col), coleo$col)) > for (j in levels(indica)) s.distri (fca1$l1, + coleo$tab[,which(indica==j)], clab = 1.5, sub = as.character(j), + cell = 0, csta = 0.5, csub = 3, + label = coleo$moda.names[which(indica == j)])

> par(op) > par(mfrow = c(1,1)) > > > >