kruskal.wallis.vdW {ANSM5} | R Documentation |
Perform Kruskal-Wallis test with van der Waerden scores
Description
kruskal.wallis.vdW()
performs the Kruskal-Wallis test with van der Waerden scores and is used in chapter 7 of "Applied Nonparametric Statistical Methods" (5th edition)
Usage
kruskal.wallis.vdW(
x,
g,
max.exact.cases = 15,
nsims.mc = 10000,
seed = NULL,
do.asymp = FALSE,
do.exact = TRUE
)
Arguments
x |
Numeric vector of same length as g |
g |
Factor of same length as x |
max.exact.cases |
Maximum number of cases allowed for exact calculations (defaults to |
nsims.mc |
Number of Monte Carlo simulations to be performed (defaults to |
seed |
Random number seed to be used for Monte Carlo simulations (defaults to |
do.asymp |
Boolean indicating whether or not to perform asymptotic calculations (defaults to |
do.exact |
Boolean indicating whether or not to perform exact calculations (defaults to |
Value
An ANSMtest object with the results from applying the function
Examples
# Example 7.2 from "Applied Nonparametric Statistical Methods" (5th edition)
kruskal.wallis.vdW(ch7$age, ch7$positions)
kruskal.wallis.vdW(ch7$age, ch7$positions, do.exact = FALSE, do.asymp = TRUE)
[Package ANSM5 version 1.1.0 Index]