locationTest(x, y, method = c("t", "kw2"),
title = NULL, description = NULL)
"htest"
a different output report is produced. The classical tests presented
here return an S4 object of class "fHTEST"
. The object contains
the following slots:"htest"
.@test
returns an object of class "list"
containing (at least) the following elements:method="t"
can be used to determine if the two sample
means are equal for unpaired data sets. Two variants are used,
assuming equal or unequal variances.
The method="kw2"
performs a Kruskal-Wallis rank sum
test of the null hypothesis that the central tendencies or medians of
two samples are the same. The alternative is that they differ.
Note, that it is not assumed that the two samples are drawn from the
same distribution. It is also worth to know that the test assumes
that the variables under consideration have underlying continuous
distributions.Lehmann E.L. (1986); Testing Statistical Hypotheses, John Wiley and Sons, New York.
## rnorm -
# Generate Series:
x = rnorm(50)
y = rnorm(50)
## locationTest -
locationTest(x, y, "t")
locationTest(x, y, "kw2")
Run the code above in your browser using DataLab