Skip to contents

Scores a_i = qnorm(R_i / (N + 1)); statistic = sum over the first sample.

Usage

morie_van_der_waerden_test(x, y)

Arguments

x, y

Numeric vectors.

Value

Named list: statistic, p_value, z, n, m.

Examples

morie_van_der_waerden_test(x = rnorm(50), y = rnorm(50))
#> $statistic
#> [1] -1.844477
#> 
#> $p_value
#> [1] 0.7023876
#> 
#> $z
#> [1] -0.3820995
#> 
#> $n
#> [1] 100
#> 
#> $m
#> [1] 50
#> 
#> $method
#> [1] "Van der Waerden normal-scores test"
#>