Nothing
intersetcor <- function(object)
{
if (!inherits(object, "cca"))
stop("can be used only with objects inheriting from 'cca'")
if (is.null(object$CCA))
stop("can be used only with constrained ordination")
wa <- object$CCA$wa
if (!inherits(object, "rda")) { # is CCA
w <- object$rowsum
wa <- sweep(object$CCA$wa, 1, sqrt(w), "*")
}
X <- qr.X(object$CCA$QR)
cor(X, 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.