Completion requirements
Given any module that deals with statistics, one basic skill you must have is to be able to program and create plots of probability distributions typically encountered in the field of data science. This tutorial should remind you of various distributions introduced in this section, but now they are phrased using the scipy.stats module.
Continuous Multivariate distributions
Dirichlet distribution
- Story. The Dirichlet distribution is a generalization of the Beta distribution. It is a probability distribution describing probabilities of outcomes. Instead of describing probability of one of two outcomes of a Bernoulli trial, like the Beta distribution does, it describes probability of
of
outcomes. The Beta distribution is the special case of
.
- Parameters. The parameters are
, all strictly positive, defined analogously to
and
of the Beta distribution.
- Support. The Dirichlet distribution has support on the interval [0, 1] such that
.
- Probability density function.
where
is the multivariate Beta function. - Related distributions.