Rev 8185 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{warpbreaks}\title{The Number of Breaks in Yarn during Weaving}\usage{data(warpbreaks)}\alias{warpbreaks}\format{A data frame with 54 observations on 3 variables.\tabular{rlll}{\code{[,1]} \tab \code{breaks} \tab numeric \tab The number of breaks\cr\code{[,2]} \tab \code{wool} \tab factor \tab The type of wool (A or B)\cr\code{[,3]} \tab \code{tension} \tab factor \tab The level of tension (L, M, H)}}\source{Tippet, L. H. C. (1950)\emph{Technological Applications of Statistics.}Wiley. Page 106.}\description{This data set gives the number of warp breaks per loom, where a loomcorresponds to a fixed length of yarn.}\references{Tukey, J. W. (1977) \emph{Exploratory Data Analysis.}Addison-Wesley.McNeil, D. R. (1977) \emph{Interactive Data Analysis.} Wiley.}\examples{data(warpbreaks)summary(warpbreaks)opar <- par(mfrow = c(1,2), oma = c(0, 0, 1.1, 0))plot(breaks ~ tension, data = warpbreaks, col = "lightgray",varwidth = TRUE, subset = wool == "A", main = "Wool A")plot(breaks ~ tension, data = warpbreaks, col = "lightgray",varwidth = TRUE, subset = wool == "B", main = "Wool B")mtext("warpbreaks data", side = 3, outer = TRUE)par(opar)summary(fm1 <- lm(breaks ~ wool*tension, data = warpbreaks))anova(fm1)}\keyword{datasets}