Levene's test

Summary

In statistics, Levene's test is an inferential statistic used to assess the equality of variances for a variable calculated for two or more groups.[1] This test is used because some common statistical procedures assume that variances of the populations from which different samples are drawn are equal. Levene's test assesses this assumption. It tests the null hypothesis that the population variances are equal (called homogeneity of variance or homoscedasticity). If the resulting p-value of Levene's test is less than some significance level (typically 0.05), the obtained differences in sample variances are unlikely to have occurred based on random sampling from a population with equal variances. Thus, the null hypothesis of equal variances is rejected and it is concluded that there is a difference between the variances in the population.

Levene's test has been used in the past before a comparison of means to inform the decision on whether to use a pooled t-test or the Welch's t-test for two sample tests or analysis of variance or Welch's modified oneway ANOVA for multi-level tests. However, it was shown that such a two-step procedure may markedly inflate the type 1 error obtained with the t-tests and thus is not recommended.[2] Instead, the preferred approach is to just use Welch's test in all cases.[2]

Levene's test may also be used as a main test for answering a stand-alone question of whether two sub-samples in a given population have equal or different variances.[3]

Levene's test was developed by and named after American statistician and geneticist Howard Levene.

Definition edit

Levene's test is equivalent to a 1-way between-groups analysis of variance (ANOVA) with the dependent variable being the absolute value of the difference between a score and the mean of the group to which the score belongs (shown below as   ). The test statistic,  , is equivalent to the   statistic that would be produced by such an ANOVA, and is defined as follows:

 

where

  •   is the number of different groups to which the sampled cases belong,
  •   is the number of cases in the  th group,
  •   is the total number of cases in all groups,
  •   is the value of the measured variable for the th case from the  th group,
  •  

(Both definitions are in use though the second one is, strictly speaking, the Brown–Forsythe test – see below for comparison.)

  •   is the mean of the   for group  ,
  •   is the mean of all  .

The test statistic   is approximately F-distributed with   and   degrees of freedom, and hence is the significance of the outcome   of   tested against   where   is a quantile of the F-distribution, with   and   degrees of freedom, and   is the chosen level of significance (usually 0.05 or 0.01).

Comparison with the Brown–Forsythe test edit

The Brown–Forsythe test uses the median instead of the mean in computing the spread within each group (  vs.  , above). Although the optimal choice depends on the underlying distribution, the definition based on the median is recommended as the choice that provides good robustness against many types of non-normal data while retaining good statistical power.[3] If one has knowledge of the underlying distribution of the data, this may indicate using one of the other choices. Brown and Forsythe performed Monte Carlo studies that indicated that using the trimmed mean performed best when the underlying data followed a Cauchy distribution (a heavy-tailed distribution) and the median performed best when the underlying data followed a chi-squared distribution with four degrees of freedom (a heavily skewed distribution). Using the mean provided the best power for symmetric, moderate-tailed, distributions.

Software implementations edit

Many spreadsheet programs and statistics packages, such as R, Python, Julia, and MATLAB include implementations of Levene's test.

Language/Program Function Notes
Python scipy.stats.levene(group1, group2, group3) See [1]
MATLAB vartestn(data,groups,'TestType','LeveneAbsolute') See [2]
R leveneTest(lm(y ~ x, data=data)) See [3]
Julia HypothesisTests.LeveneTest(group1, group2, group3) See [4]

See also edit

References edit

  1. ^ Levene, Howard (1960). "Robust tests for equality of variances". In Ingram Olkin; Harold Hotelling; et al. (eds.). Contributions to Probability and Statistics: Essays in Honor of Harold Hotelling. Stanford University Press. pp. 278–292.
  2. ^ a b Zimmermann, Donald W. (2004). "A note on preliminary tests of equality of variances". British Journal of Mathematical and Statistical Psychology. 57 (1): 173–81. doi:10.1348/000711004849222.
  3. ^ a b Derrick, B; Ruck, A; Toher, D; White, P (2018). "Tests for equality of variances between two samples which contain both paired observations and independent observations" (PDF). Journal of Applied Quantitative Methods. 13 (2): 36–47.

External links edit

  • Parametric and nonparametric Levene's test in SPSS
  • http://www.itl.nist.gov/div898/handbook/eda/section3/eda35a.htm