Nothing
`points.ordiplot` <-
function (x, what, select, arrows = FALSE, ...)
{
sco <- scores(x, display = what)
if (!missing(select))
sco <- .checkSelect(select, sco)
## draw adjusted arrows automatically for biplot scores
scoatt <- attr(sco, "score")
if (!is.null(scoatt) && scoatt %in% c("biplot", "regression")) {
arrows = TRUE
sco <- sco * ordiArrowMul(sco)
}
## draw arrows when requested, also for "species" etc
if (arrows) {
arrows(0, 0, sco[,1], sco[,2], ...)
} else {
points(sco, ...)
}
invisible(x)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.