Login
📚 Statistical Inference for Everyone
Chapters ▾

6.7 Best Estimates

Perhaps surprisingly, there is not a single answer to the best estimate for θ given the posterier distribution, like the one shown in Figure 6.9. There are several plausible measures, each with their own advantages. Any specific estimate of a parameter (e.g. θ) is denoted with a hat (e.g. θ^) in the descriptions that follow.

The Mode Also known as the maximum a-posteriori probability (MAP) estimate, the mode is the maximum of the posterior probability. In the case of a Beta distribution with h successes in N trials, we have

θ ^ m o d e = h N

The Mean Also known as the expected value or average value, the mean of a distribution of a parameter θ is defined to be the sum of all of the possible values of θ times the posterior probability of θ,

θ ^ m e a n = θ θ × P ( θ | d a t a )

It is one measure of the middle of the distribution. In the special case of a Beta distribution with h successes in N trials, we have

θ ^ m e a n = h + 1 N + 2

Intuitively this is the same as the MAP of the Beta distribution, with one more success and one more failure than actually observed. Further, for the Beta distribution, the mean value θ^mean represents the predictive probability of a successful event on the next observation.

The Median Also known as the 50%-percentile, the median represents the middle of the distribution such that the probability of the parameter below the median equal to the probability of the parameter above the median.

P ( θ θ ^ m e d i a n | d a t a ) = P ( θ θ ^ m e d i a n | d a t a ) = 0.5

“Assume 2 successes and 2 failures” median approximation For the Beta distribution there is no simple form for the median, but a decent approximation which we will use is given by1

θ ^ m e d i a n h + 2 N + 4

Intuitively this is the same as the MAP of the Beta distribution, with two more successes and two more failures than actually observed, and is thus referred to as the “Assume 2 successes and 2 failures” median approximation.

Although each of these has their advantages, most notably ease of computation (especially for the mode and the mean), we will typically use the median of the distribution as the best estimate for the following reasons:

  1. the median is intuitive as literally the middle of the distribution
  2. the median is not as sensitive to distributions that are highly asymmetric

In most practical examples it may not make much difference, and for some distributions (such as the Normal distribution described in Chapter 7 (Priors, Likelihoods, and Posteriors)) there is not difference - the mean is the median which is also the mode.

Adapted from Statistical Inference for Everyone, by Brian Blais (Bryant University), licensed under CC BY-SA 4.0 (dual-licensed under the GNU FDL 1.2 or later; this adaptation uses the CC BY-SA grant). Changes were made; this adaptation is distributed under the same license. License: CC-BY-SA-4.0.