Nothing
`spantree` <-
function (d, toolong = 0)
{
if (!inherits(d, "dist")) {
if ((is.matrix(d) || is.data.frame(d)) &&
isSymmetric(unname(as.matrix(d)))) {
d <- as.dist(d)
} else {
stop("input must be dissimilarities")
}
}
if (!is.numeric(d))
stop("input data must be numeric")
n <- attr(d, "Size")
labels <- labels(d)
dis <- .C(primtree, dist = as.double(d), toolong = as.double(toolong),
n = as.integer(n), val = double(n + 1),
dad = integer(n + 1), NAOK = TRUE)
out <- list(kid = dis$dad[2:n] + 1, dist = dis$val[2:n],
labels = labels, n = n, call = match.call())
class(out) <- "spantree"
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.