Nothing
orddist <- function (x, dim)
{
z <- x$points
if (missing(dim)) dim <- ncol(z)
if (dim != ncol(z))
cat(paste("Only comparing first",dim,"dimensions\n"))
if (dim > ncol(z)) {
dim <- ncol(z)
cat(paste("The ordination is only",dim,"dimensionsal."))
}
tmp <- dist(z[, 1:dim])
tmp
}
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.