xmp13.05 {Devore5}R Documentation

data from Example 13.5

Description

The xmp13.05 data frame has 24 rows and 2 columns of data on space shuttle launches.

Format

This data frame contains the following columns:

Temperature
launch temperature (degrees Fahrenheit).
Failure
a factor with levels N and Y indicating the incidence of failure of O-rings.

Source

Devore, J. L. (2000) Probability and Statistics for Engineering and 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.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)")