## S3 method for class 'rda':
biplot(x, choices = c(1, 2), scaling = 2,
display = c("sites", "species"), type, xlim, ylim, col = c(1,2),
const, ...)
rda
result object.2
) or site (1
) scores are scaled by eigenvalues, and
the other set of scores is left unscaled, or with 3
both are
scaled symmetrically by square root o"species"
for species scores, and/or "sites"
for site
scores.text
for text labels, points
for points, and none
for
setting frames only. If omitted, text
is selected for
smaller data sets, and points
for largescores.rda
.plot
function returns invisibly a plotting structure which
can be used by identify.ordiplot
to identify
the points or other functions in the ordiplot
family.rda
. It is common for the "species" scores in a PCA to
be drawn as biplot arrows that point in the direction of increasing
values for that variable. The biplot.rda
function provides a
wrapper to plot.cca
to allow the easy production of such a
plot. biplot.rda
is only suitable for unconstrained models. If
used on an ordination object with constraints, an error is issued.
If species scores are drawn using "text"
, the arrows are drawn
from the origin to 0.85 * species score, whilst the labels are
drawn at the species score. If the type used is "points"
, then
no labels are drawn and therefore the arrows are drawn from the origin
to the actual species score.
plot.cca
, rda
for something to
plot, ordiplot
for an alternative plotting routine
and more support functions, and text
,
points
and arrows
for the basic routines.data(dune)
mod <- rda(dune, scale = TRUE)
biplot(mod, scaling = 3)
## different type for species and site scores
biplot(mod, scaling = 3, type = c("text", "points"))
Run the code above in your browser using DataLab