This function performs the Siegel Tukey test

siegelTukey.test(matrix)

Arguments

matrix

Matrix of data

Value

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

Examples

x <- cbind(rnorm(10, sd=1), rnorm(10, sd=3)) siegelTukey.test(x)
#> Warning: ningún argumento finito para min; retornando Inf
#> $data.name #> [1] "x" #> #> $statistic #> ST1 ST2 #> 136 74 #> #> $p.value #> Exact Double Tail Asymptotic Left Tail Asymptotic Right Tail #> 1.00000000 0.99137127 0.01056696 #> Asymptotic Double Tail #> 0.02113393 #> #> $method #> [1] "Siegel Tukey" #>