Nothing
"scores.envfit" <-
function (x, display, choices, ...)
{
display <- match.arg(display, c("vectors", "bp", "factors",
"cn"))
if (display %in% c("vectors", "bp")) {
out <- x$vectors$arrows[, , drop = FALSE]
if (!is.null(out))
out <- sweep(out, 1, sqrt(x$vectors$r), "*")
}
else out <- x$factors$centroids[, , drop = FALSE]
if (!missing(choices) && !is.null(out)) {
if (length(choices) <= ncol(out))
out <- out[, choices, drop = FALSE]
else stop("You requested ", length(choices), " dimensions, but 'envfit' only has ",
ncol(out))
}
out
}
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.