Multiple Testing.Adjust Holm Sidak Method
Definition
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.2
public static Vector<double> AdjustHolmSidak(
Vector<double> pValues
)
Parameters
Return Value
Vector<Double>A vector of adjusted p-values.
Remarks
This method applies the Holm-Sidak correction to control the family-wise error rate.
The correction is performed by first sorting p-values in ascending order, then applying a progressively less strict adjustment to each p-value based on its rank. It is valid under the assumption of independent hypothesis tests and is less conservative than the Bonferroni correction while maintaining strong control of family-wise error rate.
If the hypothesis tests are not independent, this adjustment may not properly control the family-wise error rate. Consider using the Benjamini-Yekutieli procedure for dependent tests.
Exceptions
Argument | pValues is null. |
Argument | pValues is null. |