This function performs the Wilcoxon test

wilcoxon.test(matrix)

Arguments

matrix

matrix of data

Value

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

Examples

wilcoxon.test(results[ ,c(1,2)])
#> $data.name #> [1] "results[, c(1, 2)]" #> #> $statistic #> R+ R- #> 284 151 #> #> $p.value #> Exact Left pvalue Exact Right pvalue Exact Double pvalue #> 0.98376000 0.01624000 0.03248000 #> Asymptotic Left Tail Asymptotic Right Tail Asymptotic Double Tail #> 0.92629692 0.07677103 0.15354206 #> #> $method #> [1] "Wilcoxon" #>