Nothing
`scores.lda` <-
function(x, display, ...)
{
display <- match.arg(display,
c("sites", "species", "scores", "predictors", "x", "coef"),
several.ok = TRUE)
out <- NULL
if (display %in% c("sites", "scores", "x"))
out[["scores"]] <- predict(x)$x
if (display %in% c("species", "predictors", "coef"))
out[["coefficients"]] <- coef(x)
if (length(out) == 1)
out <- out[[1]]
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.