Nothing
`scores.betadiver` <-
function(x, triangular = TRUE, ...)
{
if (triangular) {
tot <- x$a + x$b + x$c
a <- x$a/tot
c <- x$c/tot
y <- sqrt(0.75)*a
x <- c + a/2
out <- cbind(x, y)
} else {
out <- sapply(x, cbind)
}
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.