Plots a rank vs relative abundance diagram.
Usage
plot_rank(object, ...)
# S4 method for class 'matrix'
plot_rank(
object,
log = NULL,
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 class 'data.frame'
plot_rank(
object,
log = NULL,
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"),
...
)Arguments
- object
A \(m \times p\)
numericmatrixordata.frameof count data (absolute frequencies giving the number of individuals for each category, i.e. a contingency table). Adata.framewill be coerced to anumericmatrixviadata.matrix().- ...
Further graphical parameters.
- log
A
characterstring which contains "x" if the x axis is to be logarithmic, "y" if the y axis is to be logarithmic and "xy" or "yx" if both axes are to be logarithmic (base 10).- color
A vector of colors (will be mapped to the rownames of
object). Ifcoloris a named a named vector, then the colors will be associated with the rownames ofobject. Ignored if set toFALSE.- symbol
A specification for the line type (will be mapped to the rownames of
object). Ifsymbolis a named a named vector, then the line types will be associated with the rownames ofobject. Ignored if set toFALSE.- xlab, ylab
A
charactervector giving the x and y axis labels.- main
A
characterstring giving a main title for the plot.- sub
A
characterstring giving a subtitle for the plot.- ann
A
logicalscalar: should the default annotation (title and x, y and z axis labels) appear on the plot?- axes
A
logicalscalar: should axes be drawn on the plot?- frame.plot
A
logicalscalar: should a box be drawn around the plot?- panel.first
An an
expressionto be evaluated after the plot axes are set up but before any plotting takes place. This can be useful for drawing background grids.- panel.last
An
expressionto be evaluated after plotting has taken place but before the axes, title and box are added.- legend
A
listof additional arguments to be passed tographics::legend(); names of the list are used as argument names. IfNULL, no legend is displayed.
Value
plot_rank() is called for its side-effects: it results in a graphic
being displayed (invisibly returns object).
References
Magurran, A. E. (1988). Ecological Diversity and its Measurement. Princeton, NJ: Princeton University Press. doi:10.1007/978-94-015-7358-0 .
See also
Other plot methods:
matrigraph(),
plot_bertin(),
plot_diceleraas(),
plot_ford(),
plot_heatmap(),
plot_spot(),
seriograph()


