profiles {tabula} | R Documentation |
Diversity Profiles
Description
Diversity Profiles
Usage
profiles(object, ...)
## S4 method for signature 'matrix'
profiles(
object,
alpha = seq(from = 0, to = 4, by = 0.04),
main = NULL,
sub = NULL,
ann = graphics::par("ann"),
axes = TRUE,
frame.plot = axes,
panel.first = NULL,
panel.last = NULL,
legend = list(x = "topright"),
...
)
## S4 method for signature 'data.frame'
profiles(
object,
alpha = seq(from = 0, to = 4, by = 0.04),
main = NULL,
sub = NULL,
ann = graphics::par("ann"),
axes = TRUE,
frame.plot = axes,
panel.first = NULL,
panel.last = NULL,
legend = list(x = "topright"),
...
)
Arguments
object |
A |
... |
Further graphical parameters to be passed to
|
alpha |
A |
main |
A |
sub |
A |
ann |
A |
axes |
A |
frame.plot |
A |
panel.first |
An an |
panel.last |
An |
legend |
A |
Details
If the profiles cross, the diversities are non-comparable across samples.
Value
profiles()
is called for its side-effects: it results in a graphic being
displayed (invisibly returns object
).
Author(s)
N. Frerebeau
References
Tóthmérész, B. (1995). Comparison of Different Methods for Diversity Ordering. Journal of Vegetation Science, 6(2), 283-290. doi:10.2307/3236223.
See Also
Other diversity measures:
heterogeneity()
,
occurrence()
,
rarefaction()
,
richness()
,
she()
,
similarity()
,
simulate()
,
turnover()
Examples
## Replicate fig. 1 of Tóthmérész 1995
spc <- matrix(
data = c(33, 29, 28, 5, 5, 0, 0, 42, 30, 10,
8, 5, 5, 0, 32, 21, 16, 12, 9, 6, 4),
nrow = 3, byrow = TRUE, dimnames = list(c("A", "B", "C"), NULL)
)
profiles(spc)