2)Holm method
3)Simes method
4)Using the criterion Controlling Family-wise Error Rate
5)Simultaneous confidence intervals using Bonferroni correction
Sometimes, we would like to test our hypothesis on multiple coordinates, where each coordinate has its own meaning. For example we can look at
As learned in class there are several procedures that were designed to address the multiple comparisons challenge. We will describe and implement the following (while mentioning and proving the simplest results):
- Bonferroni correction
- Holm method
- Simes method
Using the criterion FWER.
The procedure is as follows:
Given
The algorithm goes as follows:
- Sort the p-values
$p_{(1)}\le\cdots\le p_{(m)}$ - Denote the hypotheses accordingly
$H_{0,(1)},\cdots,H_{0,(m)}$ - For
$i$ in$1$ to$m$ : If$p_{(i)}\le\frac{\alpha}{m+1-i}$ reject$H_{0,(i)}$ and continue to the next iteration, otherwise: Reject$H_{0,(i)},\cdots,H_{0,(m)}$ and break the loop.
The algorithm goes as follows:
- Sort the p-values
$p_{(1)}\le\cdots\le p_{(m)}$ - Denote
$T_m=\min_{j}(p_{(j)}\frac{m}{j})$ - Reject the global null if
$T_m\le\alpha$
A t-test confidence interval is of the form:
The algorithm goes as follows:
- Sort the p-values
$p_{(1)}\le\cdots\le p_{(m)}$ - Denote
$T_m=\min_{j}(p_{(j)}\frac{m}{j})$ - Reject the global null if
$T_m\le\alpha$