Rev 15462 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{mood.test}\alias{mood.test}\alias{mood.test.default}\alias{mood.test.formula}\title{Mood Two-Sample Test of Scale}\description{Performs Mood's two-sample test for a difference in scale parameters.}\usage{\method{mood.test}{default}(x, y, alternative = c("two.sided", "less", "greater"), \dots)\method{mood.test}{formula}(formula, data, subset, na.action, \dots)}\arguments{\item{x, y}{numeric vectors of data values.}\item{alternative}{indicates the alternative hypothesis and must beone of \code{"two.sided"} (default), \code{"greater"} or\code{"less"} all of which can be abbreviated.}\item{formula}{a formula of the form \code{lhs ~ rhs} where \code{lhs}is a numeric variable giving the data values and \code{rhs} a factorwith two levels giving the corresponding groups.}\item{data}{an optional data frame containing the variables in themodel formula.}\item{subset}{an optional vector specifying a subset of observationsto be used.}\item{na.action}{a function which indicates what should happen whenthe data contain \code{NA}s. Defaults to\code{getOption("na.action")}.}\item{\dots}{further arguments to be passed to or from methods.}}\details{The underlying model is that the two samples are drawn from\eqn{f(x-l)} and \eqn{f((x-l)/s)/s}, respectively, where \eqn{l} is acommon location parameter and \eqn{s} is a scale parameter.The null hypothesis is \eqn{s = 1}.There are more useful tests for this problem.}\value{A list with class \code{"htest"} containing the following components:\item{statistic}{the value of the test statistic.}\item{p.value}{the p-value of the test.}\item{alternative}{a character string describing the alternativehypothesis.}\item{method}{the character string \code{"Mood two-sample test of scale"}.}\item{data.name}{a character string giving the names of the data.}}\references{Conover, W. J. (1971),\emph{Practical nonparametric statistics}.New York: John Wiley & Sons.Pages 234f.}\seealso{\code{\link{fligner.test}} for a rank-based (nonparametric) k-sampletest for homogeneity of variances;\code{\link{ansari.test}} for another rank-based two-sample test for adifference in scale parameters;\code{\link{var.test}} and \code{\link{bartlett.test}} for parametrictests for the homogeneity in variance.}\examples{## Same data as for the Ansari-Bradley test:## Serum iron determination using Hyland control seraramsay <- c(111, 107, 100, 99, 102, 106, 109, 108, 104, 99,101, 96, 97, 102, 107, 113, 116, 113, 110, 98)jung.parekh <- c(107, 108, 106, 98, 105, 103, 110, 105, 104,100, 96, 108, 103, 104, 114, 114, 113, 108, 106, 99)mood.test(ramsay, jung.parekh)## Compare this to ansari.test(ramsay, jung.parekh)}\keyword{htest}