xmp13.05 {Devore5} | R Documentation |
The xmp13.05
data frame has 24 rows and 2 columns of data on
space shuttle launches.
This data frame contains the following columns:
N
and
Y
indicating the incidence of failure of O-rings.
Devore, J. L. (2000) Probability and Statistics for Engineering and the Sciences (5th ed), Duxbury
data(xmp13.05) fm1 <- glm(Failure ~ Temperature, data = xmp13.05, family = "binomial") ## results are different from JMP results in Figure 13.8 summary(fm1) temp <- seq(55, 85, len = 101) # for doing the prediction plot( predict(fm1, new = list(Temperature = temp), type = "resp") ~ temp, main = "Compare with Figure 13.8, page 560", type = "l", ylab = "P(F)")