Nothing
spcdisc <- function(x,sort=FALSE)
{
shannon <- function(y) {
y <- as.numeric(y)
frac <- y/sum(y)
comp <- sum((-1 * frac * log(frac))[frac>0])
comp <- 1 - (comp/log(length(y)))
comp
}
tmp <- apply(x,1,shannon)
if (sort) tmp <- tmp[rev(order(tmp))]
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.