G-test

From HandWiki
Short description: Statistical test


In statistics, G-tests are likelihood-ratio or maximum likelihood statistical significance tests that are increasingly being used in situations where chi-squared tests were previously recommended.[1]

Formulation

The general formula for G is

G=2iOiln(OiEi),

where Oi0 is the observed count in a cell, Ei>0 is the expected count under the null hypothesis, ln denotes the natural logarithm, and the sum is taken over all non-empty cells. Furthermore, the total observed count should be equal to the total expected count:iOi=iEi=Nwhere N is the total number of observations.

Derivation

We can derive the value of the G-test from the log-likelihood ratio test where the underlying model is a multinomial model.

Suppose we had a sample x=(x1,,xm) where each xi is the number of times that an object of type i was observed. Furthermore, let n=i=1mxi be the total number of objects observed. If we assume that the underlying model is multinomial, then the test statistic is defined byln(L(θ~|x)L(θ^|x))=ln(i=1mθ~ixii=1mθ^ixi)where θ~ is the null hypothesis and θ^ is the maximum likelihood estimate (MLE) of the parameters given the data. Recall that for the multinomial model, the MLE of θ^i given some data is defined byθ^i=xinFurthermore, we may represent each null hypothesis parameter θ~i asθ~i=einThus, by substituting the representations of θ~ and θ^ in the log-likelihood ratio, the equation simplifies toln(L(θ~|x)L(θ^|x))=lni=1m(eixi)xi=i=1mxiln(eixi)Relabel the variables ei with Ei and xi with Oi. Finally, multiply by a factor of 2 (used to make the G test formula asymptotically equivalent to the Pearson's chi-squared test formula) to achieve the form

G=2i=1mOiln(EiOi)=2i=1mOiln(OiEi)

Heuristically, one can imagine Oi as continuous and approaching zero, in which case OilnOi0, and terms with zero observations can simply be dropped. However the expected count in each cell must be strictly greater than zero for each cell (Ei>0i) to apply the method.

Distribution and use

Given the null hypothesis that the observed frequencies result from random sampling from a distribution with the given expected frequencies, the distribution of G is approximately a chi-squared distribution, with the same number of degrees of freedom as in the corresponding chi-squared test.

For very small samples the multinomial test for goodness of fit, and Fisher's exact test for contingency tables, or even Bayesian hypothesis selection are preferable to the G-test.[2] McDonald recommends to always use an exact test (exact test of goodness-of-fit, Fisher's exact test) if the total sample size is less than 1 000 .

There is nothing magical about a sample size of 1 000, it's just a nice round number that is well within the range where an exact test, chi-square test, and G–test will give almost identical p values. Spreadsheets, web-page calculators, and SAS shouldn't have any problem doing an exact test on a sample size of 1 000 .
— John H. McDonald[2]

G-tests have been recommended at least since the 1981 edition of Biometry, a statistics textbook by Robert R. Sokal and F. James Rohlf.[3]

Relation to other metrics

Relation to the chi-squared test

The commonly used chi-squared tests for goodness of fit to a distribution and for independence in contingency tables are in fact approximations of the log-likelihood ratio on which the G-tests are based.[4]

The general formula for Pearson's chi-squared test statistic is

χ2=i(OiEi)2Ei.

The approximation of G by chi squared is obtained by a second order Taylor expansion of the natural logarithm around 1 (see #Derivation (chi-squared) below). We have Gχ2 when the observed counts Oi are close to the expected counts Ei. When this difference is large, however, the χ2 approximation begins to break down. Here, the effects of outliers in data will be more pronounced, and this explains the why χ2 tests fail in situations with little data.

For samples of a reasonable size, the G-test and the chi-squared test will lead to the same conclusions. However, the approximation to the theoretical chi-squared distribution for the G-test is better than for the Pearson's chi-squared test.[5] In cases where Oi>2Ei for some cell case the G-test is always better than the chi-squared test.[citation needed]

For testing goodness-of-fit the G-test is infinitely more efficient than the chi squared test in the sense of Bahadur, but the two tests are equally efficient in the sense of Pitman or in the sense of Hodges and Lehmann.[6][7]

Derivation (chi-squared)

Consider

G=2iOiln(OiEi),

and let Oi=Ei+δi with iδi=0, so that the total number of counts remains the same. Upon substitution we find,

G=2i(Ei+δi)ln(1+δiEi).

A Taylor expansion around 1+δiEi can be performed using ln(1+x)=x12x2+𝒪(x3). The result is

G=2i(Ei+δi)(δiEi12δi2Ei2+𝒪(δi3)), and distributing terms we find,
G=2iδi+12δi2Ei+𝒪(δi3).

Now, using the fact that iδi=0 and δi=OiEi, we can write the result,

Gi(OiEi)2Ei.

Relation to Kullback–Leibler divergence

The G-test statistic is proportional to the Kullback–Leibler divergence of the theoretical distribution from the empirical distribution:

G=2iOiln(OiEi)=2Nioiln(oiei)=2NDKL(oe),

where N is the total number of observations and oi and ei are the empirical and theoretical frequencies, respectively.

Relation to mutual information

For analysis of contingency tables the value of G can also be expressed in terms of mutual information.

Let

N=ijOij , πij=OijN , πi.=jOijN, and π.j=iOijN.

Then G can be expressed in several alternative forms:

G=2Nijπij(ln(πij)ln(πi.)ln(π.j)),
G=2N[H(r)+H(c)H(r,c)],
G=2NMI(r,c),

where the entropy of a discrete random variable X is defined as

H(X)=xSupp(X)p(x)logp(x),

and where

MI(r,c)=H(r)+H(c)H(r,c)

is the mutual information between the row vector r and the column vector c of the contingency table.

It can also be shown[citation needed] that the inverse document frequency weighting commonly used for text retrieval is an approximation of G applicable when the row sum for the query is much smaller than the row sum for the remainder of the corpus. Similarly, the result of Bayesian inference applied to a choice of single multinomial distribution for all rows of the contingency table taken together versus the more general alternative of a separate multinomial per row produces results very similar to the G statistic.[citation needed]

Application

Statistical software

  • In R fast implementations can be found in the AMR and Rfast packages. For the AMR package, the command is g.test which works exactly like chisq.test from base R. R also has the likelihood.test function in the Deducer package. Note: Fisher's G-test in the GeneCycle Package of the R programming language (fisher.g.test) does not implement the G-test as described in this article, but rather Fisher's exact test of Gaussian white-noise in a time series.[10]
  • Another R implementation to compute the G statistic and corresponding p-values is provided by the R package entropy. The commands are Gstat for the standard G statistic and the associated p-value and Gstatindep for the G statistic applied to comparing joint and product distributions to test independence.
  • In SAS, one can conduct G-test by applying the /chisq option after the proc freq.[11]
  • In Stata, one can conduct a G-test by applying the lr option after the tabulate command.
  • In Java, use org.apache.commons.math3.stat.inference.GTest.[12]
  • In Python, use scipy.stats.power_divergence with lambda_=0.[13]

References

  1. McDonald, J.H. (2014). "G–test of goodness-of-fit". Handbook of Biological Statistics (Third ed.). Baltimore, Maryland: Sparky House Publishing. pp. 53–58. http://www.biostathandbook.com/gtestgof.html. 
  2. 2.0 2.1 McDonald, John H. (2014). "Small numbers in chi-square and G–tests". Handbook of Biological Statistics (3rd ed.). Baltimore, MD: Sparky House Publishing. pp. 86–89. http://www.biostathandbook.com/small.html. 
  3. Sokal, R. R.; Rohlf, F. J. (1981). Biometry: The Principles and Practice of Statistics in Biological Research (Second ed.). New York: Freeman. ISBN 978-0-7167-2411-7. https://archive.org/details/biometryprincipl00soka_0. 
  4. Hoey, J. (2012). "The Two-Way Likelihood Ratio (G) Test and Comparison to Two-Way Chi-Squared Test". arXiv:1206.4881 [stat.ME].
  5. Harremoës, P.; Tusnády, G. (2012). "Information divergence is more chi squared distributed than the chi squared statistic". Proceedings ISIT 2012. pp. 538–543. Bibcode2012arXiv1202.1125H. 
  6. Quine, M. P.; Robinson, J. (1985). "Efficiencies of chi-square and likelihood ratio goodness-of-fit tests". Annals of Statistics 13 (2): 727–742. doi:10.1214/aos/1176349550. 
  7. Harremoës, P.; Vajda, I. (2008). "On the Bahadur-efficient testing of uniformity by means of the entropy". IEEE Transactions on Information Theory 54: 321–331. doi:10.1109/tit.2007.911155. 
  8. Dunning, Ted (1993). "Accurate Methods for the Statistics of Surprise and Coincidence ", Computational Linguistics, Volume 19, issue 1 (March, 1993).
  9. Rivas, Elena (30 October 2020). "RNA structure prediction using positive and negative evolutionary information". PLOS Computational Biology 16 (10): e1008387. doi:10.1371/journal.pcbi.1008387. 
  10. Fisher, R. A. (1929). "Tests of significance in harmonic analysis". Proceedings of the Royal Society of London A 125 (796): 54–59. doi:10.1098/rspa.1929.0151. Bibcode1929RSPSA.125...54F. 
  11. G-test of independence, G-test for goodness-of-fit in Handbook of Biological Statistics, University of Delaware. (pp. 46–51, 64–69 in: McDonald, J. H. (2009) Handbook of Biological Statistics (2nd ed.). Sparky House Publishing, Baltimore, Maryland.)
  12. org.apache.commons.math3.stat.inference.GTest
  13. "Scipy.stats.power_divergence — SciPy v1.7.1 Manual". https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.power_divergence.html#scipy.stats.power_divergence.