Nothing
"no.shared" <-
function(x)
{
N <- nrow(x <- as.matrix(x))
d <- .C("veg_distance", x = as.double(x), nr = N, nc = ncol(x),
d = double(N * (N - 1)/2), diag = as.integer(FALSE),
method = as.integer(99), PACKAGE="vegan")$d
d <- as.logical(d)
attr(d, "Size") <- N
attr(d, "Labels") <- dimnames(x)[[1]]
attr(d, "Diag") <- FALSE
attr(d, "Upper") <- FALSE
attr(d, "method") <- "no.shared"
attr(d, "call") <- match.call()
class(d) <- "dist"
d
}
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.