.. _2_x_tweedie: The Tweedie Distribution -------------------------- The Tweedie distribution is a Poisson mixture of gammas. It is an exponential family distribution :cite:p:`Jorgensen1997`. Tweedie distributions are a suitable model for pure premiums and are used as unit distributions in GLMs :cite:p:`Mccullagh2019`. Tweedie distributions do not have a closed form density, but estimating the density is easy using ``aggregate``. The **Tweedie** family of distributions is a three-parameter exponential family. A variable :math:`X \sim \mathrm{Tw}_p(\mu, \sigma^2)` when :math:`\mathsf E[X] = \mu` and :math:`\mathsf{Var}(X) = \sigma^2 \mu^p`, :math:`1 \le p \le 2`. :math:`p` is a shape parameter and :math:`\sigma^2>0` is a scale parameter called the dispersion. A Tweedie with :math:`1`__ for more details. .. ipython:: python :okwarning: from aggregate.extensions.figures import power_variance_family @savefig tweedie_powervariance.png scale=20 power_variance_family()