Dirichlet | R Documentation |
Density function, cumulative distribution function and random generation for the Dirichlet distribution.
ddirichlet(x, alpha, log = FALSE)
rdirichlet(n, alpha)
x |
|
alpha |
|
log |
logical; if TRUE, probabilities p are given as log(p). |
n |
number of observations. If |
Probability density function
f(x) = \frac{\Gamma(\sum_k \alpha_k)}{\prod_k \Gamma(\alpha_k)} \prod_k x_k^{k-1}
Devroye, L. (1986). Non-Uniform Random Variate Generation. Springer-Verlag.
# Generating 10 random draws from Dirichlet distribution
# parametrized using a vector
rdirichlet(10, c(1, 1, 1, 1))
# or parametrized using a matrix where each row
# is a vector of parameters
alpha <- matrix(c(1, 1, 1, 1:3, 7:9), ncol = 3, byrow = TRUE)
rdirichlet(10, alpha)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.