Multiple Testing
When conducting multiple tests, we must adjust the p-values to account for the number of hypotheses being tested, in order to control the Type I Error rate. Although there is no universally-accepted solution for multiple testing, some common ones are
Bonferroni correction
Sidak correction
Step-based approach
Tukey’s procedure
Dunnet’s correction
Bonferroni Correction
The Bonferroni correction is the most conservative and straightforward approach among all the adjustments:
Ex: if we have 20 tests with initial/desired alpha = 0.05, then the Bonferroni correction would test each test at alpha_corrected = 0.05 / 20 = 0.0025 significance level.
Type I Error Rate and Bonferroni Correction
Rate = 1 - [ (1 - significance level) ^ number of tests ]
The probability of encountering an error remains significantly high. This is where the Bonferroni correction plays a crucial role. Although slightly conservative, it effectively controls the family-wise error rate, helping to mitigate the risk of a Type I error.
The Bonferroni correction effectively adjusted the family-wise error rate for five hypothesis tests. Ultimately, only one test remained significant.
Last updated