vegetab(x, use, scale, sp.ind, site.ind, zero=".")
coverscale(x, scale=c("Braun.Blanquet", "Domin", "Hult", "Hill", "fix", "log"))cca,
decorana or hclust for ordering sites and species. The parameter use can be a vector or an object from
hclust or any ordination result recognized by
scores.
If use is a vector, it is used
for ordering sites. If use is an object from ordination, both
sites and species
are arranged by the first axis.
When use is an
object from hclust, the sites are ordered similarly
as in the cluster dendrogam.
There is no natural, unique ordering in hierarchic
clustering, but in some cases species are still nicely ordered.
If ordination methods provide species scores, these are used for
ordering species. In all cases where species scores are missing,
species are ordered by their weighted averages (wascores
on site scores.
Alternatively, species and sites can be ordered explicitly giving
their indices or names in parameters sp.ind and
site.ind. If these are given, they take precedence over
use.
If scale is given, vegetab calls
coverscale to transform percent cover
scale or some other scales into traditional class scales used in
vegetation science (coverscale can be called directly, too).
Braun-Blanquet and Domin scales are actually not
strict cover scales, and the limits used for codes r and
+ are arbitrary. Alternative Hill may be
inappropriately named, since Mark O. Hill probably never intended this
as a cover scale. However, it is used as default `cut levels' in his
TWINSPAN, and surprisingly many users stick to this default,
and so this is a de facto standard in publications. All
traditional
scales assume that values are cover percentages with maximum 100.
However, non-traditional alternative log can be used with any
scale range. Its class limits are integer powers of 1/2 of the
observed maximum in the data, with + used for non-zero entries
less than 1/512 of data maximum (log stands alternatively for
logarithmic or logical). Scale fix is intended for `fixing'
10-point scales: it truncates scale values to integers, and replaces
10 with X and positive values below 1 with +.
Shimwell, D.W. (1971) The Description and Classification of Vegetation. Sidgwick & Jackson.
cut and approx for making your own
`cover scales', wascores for weighted averages.data(varespec)
## Print only more common species
freq <- apply(varespec > 0, 2, sum)
vegetab(varespec, scale="Hult", sp.ind = freq > 10)
## Order by correspondence analysis, use Hill scaling and layout:
dca <- decorana(varespec)
vegetab(varespec, dca, "Hill", zero="-")Run the code above in your browser using DataLab