![]() |
VOOZH | about |
In data analysis, it's common to run many hypothesis tests at once for example, checking thousands of genes in a medical study to see which are linked to a disease. But the more tests we do, the higher the chance of getting results that look important just by accident. To reduce these false positives, statisticians use correction methods. The Holm-Bonferroni method is one of them and is popular because it controls these errors without being too strict, making it more effective than the older Bonferroni method.
Let’s say you run m hypothesis tests and get m p-values.
1. Sort the p-values in ascending order:
2. Assign ranks to the sorted p-values. Let be the i-th smallest p-value.
3. Compare each p-value to its adjusted threshold:
where α\alphaα is your desired significance level (e.g., 0.05).
4. Reject all hypotheses from the first up to the last one that satisfies the condition.
Once a p-value fails the condition, stop rejecting further hypotheses, even if the later p-values meet the threshold.
Example- Use the Holm-Bonferroni method to test the following four hypotheses and their associated p-values at an alpha level of 0.05:
| Hypothesis | p-value |
|---|---|
H1 | 0.01 |
H2 | 0.04 |
H3 | 0.03 |
H4 | 0.005 |
Step 1: Sort the p-values in ascending order and match the corresponding hypotheses
Hypothesis | p-value |
|---|---|
H4 | 0.005 |
H1 | 0.01 |
H3 | 0.03 |
H2 | 0.04 |
Step 2: Compute adjusted significance levels
Hypothesis | p-value | |
|---|---|---|
H4 | 0.005 | 0.0125 |
H1 | 0.01 | 0.0167 |
H3 | 0.03 | 0.025 |
H2 | 0.04 | 0.05 |
Step 3: Compare p-values to corresponding α,
Hypothesis | p-value | |
|---|---|---|
H4 | 0.005 | Reject |
H1 | 0.01 | Reject |
H3 | 0.03 | Do not reject |
H2 | 0.04 | Do not reject |
Method | Approach | Conservative? | Power |
|---|---|---|---|
Bonferroni | Fixed threshold | Very high | Low |
Holm-Bonferroni | Stepwise, adaptive | Less conservative | Higher |
So, Holm-Bonferroni is always at least as powerful as Bonferroni, and usually better.