View source: R/adjustMultipleTesting.R
adjustMultipleTesting | R Documentation |
Calculate adjusted pvalues of multiple testing.
adjustMultipleTesting(pval_list, alpha)
pval_list |
Pvalues from multiple testing |
alpha |
threshold |
A list object, which contains the following two items:
Table
A data frame object with columns of rank, pvals, adjusted_pvals and whether to reject null hypothesis.
Proportion
The proportion of the tests that reject the null hypothesis H0 among all the tests.
file <- system.file(package="RgnTX", "extdata/multi_pvals.rds")
multi_pvals <- readRDS(file)
adjustMultipleTesting(multi_pvals[, 1], 0.05)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.