plot_rarefaction {tabula} | R Documentation |
Rarefaction Plot
Description
Rarefaction Plot
Usage
## S4 method for signature 'RarefactionIndex,missing'
plot(
x,
main = NULL,
sub = NULL,
ann = graphics::par("ann"),
axes = TRUE,
frame.plot = axes,
panel.first = NULL,
panel.last = NULL,
legend = list(x = "topleft"),
...
)
Arguments
x |
A RarefactionIndex object to be plotted. |
main |
A |
sub |
A |
ann |
A |
axes |
A |
frame.plot |
A |
panel.first |
An an |
panel.last |
An |
legend |
A |
... |
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_diversity
,
plot_ford()
,
plot_heatmap()
,
plot_rank()
,
plot_spot()
,
seriograph()
Examples
## Data from Conkey 1980, Kintigh 1989
data("cantabria")
## Replicate fig. 3 from Baxter 2011
rare <- rarefaction(cantabria, sample = 23, method = "baxter")
plot(rare, panel.first = graphics::grid())
## Change graphical parameters
col <- khroma::color("bright")(5)
plot(rare, col = col, lty = 1:5)