Last updated: 2017-02-20
Code version: 92d7daa
The purpose of this vignette is to introduce the Dirichlet distribution. You should be familiar with the Beta distribution since the Dirichlet can be thought of as a generalization of the Beta distribution.
If you want more details you could look at Wikipedia.
You can think of the J-dimensional Dirichlet distribution as a distribution on probability vectors, q=(q1,…,qJ), whose elements are non-negative and sum to 1. It is perhaps the most commonly-used distribution for probability vectors, and plays a central role in Bayesian inference from multinomial data.
The Dirichlet distribution has J parameters, α1,…,αJ that control the mean and variance of the distribution. If q∼Dirichlet(α1,…,αJ) then:
The expectation of qj is αj/(α1+⋯+αJ).
The variance of qj becomes smaller as the sum ∑jαj increases.
The 2-dimensional Dirichlet distribution is essentially the Beta distribution. Specifically, let q=(q1,q2). Then q∼Dirichlet(α1,α2) implies that q1∼Beta(α1,α2) and q2=1−q1.
More generally, the marginals of the Dirichlet distribution are also beta distributions.
That is, if q∼Dirichlet(α1,…,αJ) then qj∼Beta(αj,∑j′≠jαj′).
The density of the Dirichlet distribution is most conveniently written as p(q|α)=Γ(α1+⋯+αJ)Γ(α1)…Γ(αJ)J∏j=1qαj−1j(qj≥0;∑jqj=1). where Gamma here denotes the gamma function.
Actually when writing the density this way, a little care needs to be taken to make things formally correct. Specifically, if you perform standard (Lebesgue) integration of this “density” over the J dimensional space q1,…,qJ it integrates to 0, and not 1 as a density should. This problem is caused by the constraint that the qs must sum to 1, which means that the Dirichlet distribution is effectively a J−1-dimensional distribution and not a J dimensional distribution.
The simplest resolution to this is to think of the J dimensional Dirichlet distribution as a distribution on the J−1 numbers (q1,…,qJ−1), satisfying ∑J−1j=1qj≤1, and then define qJ:=(1−q1−q2−⋯−qJ−1). Then, if we integrate the density p(q1,…,qJ−1|α)=Γ(α1+⋯+αJ)Γ(α1)…Γ(αJ)J−1∏j=1qαj−1j(1−q1−⋯−qJ−1)αJ(qj≥0;J−1∑j=1qj≤1). over (q1,…,qJ−1), it integrates to 1 as a density should.
sessionInfo()
R version 3.3.2 (2016-10-31)
Platform: x86_64-apple-darwin13.4.0 (64-bit)
Running under: OS X El Capitan 10.11.6
locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
attached base packages:
[1] stats graphics grDevices utils datasets methods base
loaded via a namespace (and not attached):
[1] backports_1.0.5 magrittr_1.5 rprojroot_1.2 htmltools_0.3.5
[5] tools_3.3.2 rstudioapi_0.6 yaml_2.1.14 Rcpp_0.12.9
[9] stringi_1.1.2 rmarkdown_1.3 knitr_1.15.1 git2r_0.18.0
[13] stringr_1.1.0 digest_0.6.12 workflowr_0.3.0 gtools_3.5.0
[17] evaluate_0.10
This site was created with R Markdown