Nothing
"spenvcor" <-
function (object)
{
if (is.null(object$CCA))
stop("Needs results from constrained ordination")
u <- object$CCA$u
wa <- object$CCA$wa
if (!inherits(object, "rda")) { # is CCA
r <- sqrt(object$rowsum)
u <- sweep(u, 1, r, "*")
wa <- sweep(wa, 1, r, "*")
}
diag(cor(u, wa))
}
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.