wilcoxBatch | R Documentation |
Automatic calculation of a Wilcoxon test for OMICS data
wilcoxBatch(df, groupVar, threshold = 5, method.Adj = "BH")
df |
dataframe (variable in columns, samples in rows) |
groupVar |
sample grouping column |
threshold |
threshold for significance (expressed as a percentage) |
method.Adj |
method used for multiple comparison adjustment ("holm", "hochberg", "hommel", "bonferroni", "BH", "BY", "fdr", "none") |
dataframe with significant variables
data(LIHC_pnas)
# subset of TCGA data from LIHC
LIHC_pnas <- subset(LIHC_pnas, iHCC != "iHCC3")
res<-wilcoxBatch(LIHC_pnas, iHCC, threshold=1) # 1% threshold
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.