profiles | R Documentation |
Diversity Profiles
profiles(object, ...)
## S4 method for signature 'matrix'
profiles(
object,
alpha = seq(from = 0, to = 4, by = 0.04),
color = NULL,
symbol = FALSE,
xlab = NULL,
ylab = NULL,
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),
color = NULL,
symbol = FALSE,
xlab = NULL,
ylab = NULL,
main = NULL,
sub = NULL,
ann = graphics::par("ann"),
axes = TRUE,
frame.plot = axes,
panel.first = NULL,
panel.last = NULL,
legend = list(x = "topright"),
...
)
object |
A |
... |
Further graphical parameters to be passed to
|
alpha |
A |
color |
A vector of colors (will be mapped to the rownames of |
symbol |
A specification for the line type (will be mapped to
the rownames of |
xlab , ylab |
A |
main |
A |
sub |
A |
ann |
A |
axes |
A |
frame.plot |
A |
panel.first |
An an |
panel.last |
An |
legend |
A |
If the profiles cross, the diversities are non-comparable across samples.
profiles()
is called for its side-effects: it results in a graphic being
displayed (invisibly returns object
).
N. Frerebeau
Tóthmérész, B. (1995). Comparison of Different Methods for Diversity Ordering. Journal of Vegetation Science, 6(2), 283-290. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.2307/3236223")}.
Other diversity measures:
heterogeneity()
,
occurrence()
,
plot_diversity
,
plot_rarefaction
,
rarefaction()
,
richness()
,
she()
,
similarity()
,
simulate()
,
turnover()
## 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("Z", "B", "C"), NULL)
)
profiles(spc, color = color("bright"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.