Welch's t-test


In statistics, Welch's t-test, or unequal variances t-test, is a two-sample location test which is used to test the hypothesis that two populations have equal means. It is named for its creator, Bernard Lewis Welch, and is an adaptation of Student's t-test, and is more reliable when the two samples have unequal variances and/or unequal sample sizes. These tests are often referred to as "unpaired" or "independent samples" t-tests, as they are typically applied when the statistical units underlying the two samples being compared are non-overlapping. Given that Welch's t-test has been less popular than Student's t-test and may be less familiar to readers, a more informative name is "Welch's unequal variances t-test" — or "unequal variances t-test" for brevity.

Assumptions

Student's t-test assumes that the two sample distributions are normally distributed with equal variance. Welch's t-test is designed for unequal sample distribution variance, but the assumption of sample distribution normality is maintained. Welch's t-test is an approximate solution to the Behrens–Fisher problem.

Calculations

Welch's t-test defines the statistic t by the following formula:
where, and are the sample mean, sample standard deviation and sample size, respectively,. Unlike in Student's t-test, the denominator is not based on a pooled variance estimate.
The degrees of freedom associated with this variance estimate is approximated using the Welch–Satterthwaite equation:
Here, the degrees of freedom associated with the first variance estimate., the degrees of freedom associated with the 2nd variance estimate.
The statistic approximately from the t-distribution since we have an approximation of the chi-square distribution. This approximation is better done when both and are larger than 5.

Statistical test

Once t and have been computed, these statistics can be used with the t-distribution to test one of two possible null hypotheses:
The approximate degrees of freedom are rounded down to the nearest integer.

Advantages and limitations

Welch's t-test is more robust than Student's t-test and maintains type I error rates close to nominal for unequal variances and for unequal sample sizes under normality. Furthermore, the power of Welch's t-test comes close to that of Student's t-test, even when the population variances are equal and sample sizes are balanced. Welch's t-test can be generalized to more than 2-samples, which is more robust than one-way analysis of variance.
It is not recommended to pre-test for equal variances and then choose between Student's t-test or Welch's t-test. Rather, Welch's t-test can be applied directly and without any substantial disadvantages to Student's t-test as noted above. Welch's t-test remains robust for skewed distributions and large sample sizes. Reliability decreases for skewed distributions and smaller samples, where one could possibly perform Welch's t-test.

Examples

The following three examples compare Welch's t-test and Student's t-test. Samples are from random normal distributions using the R programming language.
For all three examples, the population means were and.
The first example is for equal variances and equal sample sizes. Let A1 and A2 denote two random samples:
The second example is for unequal variances and unequal sample sizes. The smaller sample has the larger variance:
The third example is for unequal variances and unequal sample sizes. The larger sample has the larger variance:
Reference p-values were obtained by simulating the distributions of the t statistics for the null hypothesis of equal population means. Results are summarised in the table below, with two-tailed p-values:
Welch's t-test and Student's t-test gave identical results when the two samples have identical variances and sample sizes. But note that if you sample data from populations with identical variances, the sample variances will differ, as will the results of the two t-tests. So with actual data, the two tests will almost always give somewhat different results.
For unequal variances, Student's t-test gave a low p-value when the smaller sample had a larger variance and a high p-value when the larger sample had a larger variance. For unequal variances, Welch's t-test gave p-values close to simulated p-values.

Software implementations