Trisha Shetty (Editor)

Good–Turing frequency estimation

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

Good–Turing frequency estimation is a statistical technique for estimating the probability of encountering an object of a hitherto unseen species, given a set of past observations of objects from different species. (In drawing balls from an urn, the 'objects' would be balls and the 'species' would be the distinct colors of the balls (finite but unknown in number). After drawing R red red balls, R black black balls and R green green balls, we would ask what is the probability of drawing a red ball, a black ball, a green ball or one of a previously unseen color.

Contents

Historical background

Good–Turing frequency estimation was developed by Alan Turing and his assistant I. J. Good as part of their efforts at Bletchley Park to crack German ciphers for the Enigma machine during World War II. Turing at first modeled the frequencies as a multinomial distribution, but found it inaccurate. Good developed smoothing algorithms to improve the estimator's accuracy.

The discovery was recognized as significant when published by Good in 1953, but the calculations were difficult so it was not used as widely as it might have been. The method even gained some literary fame due to the Robert Harris novel Enigma.

In the 1990s, Geoffrey Sampson worked with William A. Gale of AT&T, to create and implement a simplified and easier-to-use variant of the Good–Turing method described below.

The method

First notation and some required data structures are defined:

  • Assuming that X distinct species have been observed, numbered x = 1, ..., X.
  • Then the frequency vector, R ¯ , has elements R x that give the number of individuals that have been observed for species x.
  • The frequency of frequencies vector, ( N r ) r = 0 , 1 , , shows how many times the frequency r occurs in the vector R; i.e. among the elements R x .
  • N r = | { x R x = r } |

    For example, N 1 is the number of species for which only one individual was observed. Note that the total number of objects observed, N, can be found from

    N = r = 1 r N r .

    The first step in the calculation is to find an estimate of the total probability of unseen species. This estimate is:

    p 0 = N 1 N .

    The next step is to find an estimate of probability for species which were seen r times. For a single species this estimate is:

    p r = ( r + 1 ) S ( N r + 1 ) N S ( N r ) .

    To estimate a probability of encountering any species from this group (i.e., the group of species seen r times) one can use the following formula:

    ( r + 1 ) S ( N r + 1 ) N .

    Here, the notation S ( ) means the smoothed or adjusted value of the frequency shown in parenthesis (see also empirical Bayes method). An overview of how to perform this smoothing follows.

    We would like to make a plot of log N r versus log r but this is problematic because for large r many N r will be zero. Instead a revised quantity, log Z r , is plotted versus log r , where Zr is defined as

    Z r = N r 0.5 ( t q ) ,

    and where q, r and t are consecutive subscripts having N q , N r , N t non-zero. When r is 1, take q to be 0. When r is the last non-zero frequency, take t to be 2r − q.

    The assumption of Good–Turing estimation is that the number of occurrence for each species follows a binomial distribution.

    A simple linear regression is then fitted to the log–log plot. For small values of r it is reasonable to set S ( N r ) = N r (that is, no smoothing is performed), while for large values of r, values of S ( N r ) are read off the regression line. An automatic procedure (not described here) can be used to specify at what point the switch from no smoothing to linear smoothing should take place. Code for the method is available in the public domain.

    References

    Good–Turing frequency estimation Wikipedia