Skip to contents

Replaces pooled ranks with Blom-approximated normal scores a_i = qnorm((R_i - 3/8) / (N + 1/4)). Statistic stat_t = sum of scores from the first sample.

Usage

morie_terry_hoeffding_test(x, y)

Arguments

x, y

Numeric vectors.

Value

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

Examples

morie_terry_hoeffding_test(x = rnorm(50), y = rnorm(50))
#> $statistic
#> [1] 6.001187
#> 
#> $p_value
#> [1] 0.2250038
#> 
#> $z
#> [1] 1.21333
#> 
#> $n
#> [1] 100
#> 
#> $m
#> [1] 50
#> 
#> $method
#> [1] "Terry-Hoeffding (Fisher-Yates) normal-scores test"
#>