Nothing
# dissimilarity diameters
if (!isGeneric("disdiam")) {
setGeneric("disdiam",
function (x, ...)
standardGeneric("disdiam")
)
}
setMethod("disdiam",
signature(x = "VegsoupPartition"),
function (x, ...) {
if (getK(x) == 1)
stop("meaningless with k = ", getK(x))
r <- optpart::disdiam(partitioning(x), as.dist(x))
return(r)
}
)
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.