This function performs the Wilcoxon Rank Sum test

wilcoxonRankSum.test(matrix)

Arguments

matrix

Matrix of data

Value

A list with pvalues for alternative hypothesis, statistics, method and data name

Examples

wilcoxonRankSum.test(results[ ,1:2])
#> $data.name #> [1] "results[, 1:2]" #> #> $statistic #> WRank #> 665 #> #> $p.value #> Asymptotic Left Tail Asymptotic Right Tail Asymptotic Double Tail #> 0.001564631 0.998512444 0.003129261 #> #> $method #> [1] "Wilcoxon Rank Sum" #>