perform_wilcox_test | R Documentation |
Function for Wilcoxon-Mann-Whitney U-Test
perform_wilcox_test(con, exp, alpha = 0.05)
con |
A data frame or matrix containing the expression values for the control. |
exp |
A data frame or matrix containing the expression values for the experiment. |
alpha |
Value of significance level ranging from 0 to 1 (default = 0.05 states 5 % significance). |
A data frame containing values for statistic score, p-values etc for each gene being tested.
library(DGEAR)
data("gene_exp_data")
data = read_and_preprocess_data(datafile = gene_exp_data, con1=1,con2=10,exp1=11,exp2=20)
perform_wilcox_test(con= data$con, exp= data$exp)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.