plot_diversity {tabula} | R Documentation |
Diversity Plot
Description
Diversity Plot
Usage
## S4 method for signature 'DiversityIndex,missing'
plot(
x,
log = "x",
col.mean = "#DDAA33",
col.interval = "#004488",
lty.mean = "solid",
lty.interval = "dashed",
lwd.mean = 1,
lwd.interval = 1,
main = NULL,
sub = NULL,
ann = graphics::par("ann"),
axes = TRUE,
frame.plot = axes,
panel.first = NULL,
panel.last = NULL,
...
)
Arguments
x |
A DiversityIndex object to be plotted. |
log |
A |
col.mean , col.interval |
A |
lty.mean , lty.interval |
A |
lwd.mean , lwd.interval |
A non-negative |
main |
A |
sub |
A |
ann |
A |
axes |
A |
frame.plot |
A |
panel.first |
An an |
panel.last |
An |
... |
Further graphical parameters to be passed to
|
Value
plot()
is called for its side-effects: it results in a graphic being
displayed (invisibly returns x
).
Author(s)
N. Frerebeau
See Also
Other plot methods:
matrigraph()
,
plot_bertin()
,
plot_diceleraas()
,
plot_ford()
,
plot_heatmap()
,
plot_rank()
,
plot_rarefaction
,
plot_spot()
,
seriograph()
Examples
## Data from Conkey 1980, Kintigh 1989
data("cantabria")
## Assemblage diversity size comparison
## Warning: this may take a few seconds!
h <- heterogeneity(cantabria, method = "shannon")
h_sim <- simulate(h)
plot(h_sim)
r <- richness(cantabria, method = "count")
r_sim <- simulate(r)
plot(r_sim)