rdirichlet <- function(n, alpha) {
# taken from gtools
l <- length(alpha)
x <- matrix(rgamma(l * n, alpha), ncol = l, byrow = TRUE)
sm <- x %*% rep(1, l)
res <- x / as.vector(sm)
res[is.nan(res)] <- 0
res
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.