Rev 4820 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{xmp13.05}\alias{xmp13.05}\title{data from Example 13.5}\description{The \code{xmp13.05} data frame has 24 rows and 2 columns of data onspace shuttle launches.}\format{This data frame contains the following columns:\describe{\item{Temperature}{launch temperature (degrees Fahrenheit).}\item{Failure}{a factor with levels\code{N} and\code{Y} indicating the incidence of failure of O-rings.}}}\source{Devore, J. L. (2000) \emph{Probability and Statistics for Engineeringand the Sciences (5th ed)}, Duxbury}\examples{data(xmp13.05)fm1 <- glm(Failure ~ Temperature,data = xmp13.05, family = "binomial")## results are different from JMP results in Figure 13.8summary(fm1)temp <- seq(55, 85, len = 101) # for doing the predictionplot(predict(fm1, new = list(Temperature = temp), type = "resp") ~ temp,main = "Compare with Figure 13.8, page 560", type = "l",ylab = "P(F)")}\keyword{datasets}