1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
\name{scaleTest}
\alias{scaleTest}
\concept{Ansari-Bradley test}
\concept{Mood test}
\title{Two sample scale tests}
\description{
Tests if two series differ in their distributional scale parameter.
}
\usage{
scaleTest(x, y, method = c("ansari", "mood"),
title = NULL, description = NULL)
}
\arguments{
\item{x, y}{
numeric vectors of data values.
}
\item{method}{
a character string naming which test should be applied.
}
\item{title}{
an optional title string, if not specified the inputs data
name is deparsed.
}
\item{description}{
optional description string, or a vector of character strings.
}
}
\details{
The \code{method="ansari"} performs the Ansari-Bradley two-sample
test for a difference in scale parameters. The test returns for
any sizes of the series \code{x} and \code{y} the exact p value
together with its asymptotic limit.
The \code{method="mood"}, is another test which performs a
two-sample test for a difference in scale parameters. The underlying
model is that the two samples are drawn from \emph{f(x-l)} and
\emph{f((x-l)/s)/s}, respectively, where \emph{l} is a common
location parameter and \emph{s} is a scale parameter. The null
hypothesis is \emph{s=1}.
}
\value{
an object from class \code{\link{fHTEST}}
}
\note{
Some of the test implementations are selected from \R's \code{ctest}
package.
}
\references{
Conover, W. J. (1971);
\emph{Practical nonparametric statistics},
New York: John Wiley & Sons.
Lehmann E.L. (1986);
\emph{Testing Statistical Hypotheses},
John Wiley and Sons, New York.
Moore, D.S. (1986);
\emph{Tests of the chi-squared type},
In: D'Agostino, R.B. and Stephens, M.A., eds.,
Goodness-of-Fit Techniques, Marcel Dekker, New York.
}
\author{
R-core team for hypothesis tests implemented from \R's
package \code{ctest}.
}
\examples{
\dontshow{set.seed(1234)}
## Generate Series:
x = rnorm(50)
y = rnorm(50)
scaleTest(x, y, "ansari")
scaleTest(x, y, "mood")
}
\keyword{htest}
|