8.2 Baby weights, Part II

Exercise 8.1 introduces a data set on birth weight of babies. Another variable we consider is parity, which is 0 if the child is the first born, and 1 otherwise. The summary table below shows the results of a linear regression model for predicting the average birth weight of babies, measured in ounces, from parity.

Estimate Std. Error t value Pr(>\(abs(t)\))
(Intercept) 120.07 0.60 199.94 0.000
parity -1.93 1.19 -1.62 0.1052
  1. Write the equation of the regression line. \(\widehat{weight}=120.07 - 1.93 \times parity\)

  2. Interpret the slope in this context, and calculate the predicted birth weight of first borns and others. All else being equal, the average birth weight is 120 ounces. If the child is not the first born the birth weight decreases by two ounces, to 118 ounces.

  3. Is there a statistically significant relationship between the average birth weight and parity? No because the P value is > 0.05

8.4 Absenteeism, Part I.

Researchers interested in the relationship between absenteeism from school and certain demographic characteristics of children collected data from 146 randomly sampled students in rural New South Wales, Australia, in a particular school year. Below are three observations from this data set.

eth sex lrn day
1 0 1 1 2
2 0 1 1 11
. . . . .
. . . . .
. . . . .
146 1 0 0 37

The summary table below shows the results of a linear regression model for predicting the average number of days absent based on ethnic background (eth: 0 - aboriginal, 1 - not aboriginal), sex (sex: 0 - female, 1 - male), and learner status (lrn: 0 - average learner, 1 - slow learner).

Estimate Std. Error t value Pr(>\(abs(t)\))
(Intercept) 18.93 2.57 7.37 0.0000
eth -9.11 2.60 -3.51 0.0000
sex 3.10 2.64 1.18 0.2411
lrn 2.15 2.65 0.81 0.4177
  1. Write the equation of the regression line. \(\widehat{day} = 18.93 -9.11eth + 3.1sex + 2.15lrn\)

  2. Interpret each one of the slopes in this context. On average a student misses about 19 days of school. If they are aboriginal they miss an additional 9 days. If they are female they miss 3 more days. If they are not a slow learner they miss 2 additional days.

  3. Calculate the residual for the first observation in the data set: a student who is aboriginal, male, a slow learner, and missed 2 days of school.

\(\widehat{day} = 18.93 -9.11(0) + 3.1(1) + 2.15(1) = 24.18\)

\(e_i = day_1 - \widehat{day}_1 = 2 - 24.18 = -22.18\)

  1. The variance of the residuals is 240.57, and the variance of the number of absent days for all students in the data set is 264.17. Calculate the \(R^2\) and the adjusted \(R^2\). Note that there are 146 observations in the data set.

\(R^2 = 1 - \frac{Var(e_1)}{Var(y_1)} = 1 - \frac{240.57}{264.17} = 0.0893364\)

\(R^2_\text{adj} = 1 - \frac{Var(e_1)}{Var(y_1)} \times \frac{(n-1)}{(n-k-1)} = 1- \frac{240.57}{264.17} \times \frac{(146-1)}{(146 - 3 - 1)} = 1 - 0.9106636 \times 1.021127 = 0.07009681\)

8.8 Absenteeism, Part II.

Exercise 8.4 considers a model that predicts the number of days absent using three predictors: ethnic background (eth), gender (sex), and learner status (lrn). The table below shows the adjusted R-squared for the model as well as adjusted R-squared values for all models we evaluate in the first step of the backwards elimination process.

Model Adjusted \(R^2\)
1 Full model 0.0701
2 No ethnicity -0.0033
3 No sex 0.0676
4 No learner status 0.0723

Which, if any, variable should be removed from the model first? lrn because the adjusted \(R^2\) increases from 0.0701 to 0.0723

8.16 Challenger disaster, Part I.

On January 28, 1986, a routine launch was anticipated for the Challenger space shuttle. Seventy-three seconds into the flight, disaster happened: the shuttle broke apart, killing all seven crew members on board. An investigation into the cause of the disaster focused on a critical seal called an O-ring, and it is believed that damage to these O-rings during a shuttle launch may be related to the ambient temperature during the launch. The table below summarizes observational data on O-rings for 23 shuttle missions, where the mission order is based on the temperature at the time of the launch. Temp gives the temperature in Fahrenheit, Damaged represents the number of damaged O-rings, and Undamaged represents the number of O-rings that were not damaged.

Shuttle Mission 1 2 3 4 5 6 7 8 9 10 11 12
Temperature 53 57 58 63 66 67 67 67 68 69 70 70
Damaged 5 1 1 1 0 0 0 0 0 0 1 0
Undamaged 1 5 5 5 6 6 6 6 6 6 5 6
Shuttle Mission 13 14 15 16 17 18 19 20 21 22 23
Temperature 70 70 72 73 75 75 76 76 78 79 81
Damaged 1 0 0 0 0 1 0 0 0 0 0
Undamaged 5 6 6 6 6 5 6 6 6 6 6
  1. Each column of the table above represents a different shuttle mission. Examine these data and describe what you observe with respect to the relationship between temperatures and damaged O-rings. At 53 to 57 degrees Fahrenheit, the ratio of damaged to undamaged O-rings flip.

  2. Failures have been coded as 1 for a damaged O-ring and 0 for an undamaged O-ring, and a logistic regression model was fit to these data. A summary of this model is given below. Describe the key components of this summary table in words.

Estimate Std. Error t value Pr(>\(abs(t)\))
(Intercept) 11.6630 3.2963 3.54 0.0004
Temperature -0.2162 0.0532 -4.07 0.0000

The model is the probability of failure given the ambient air temperature at launch time.

  1. Write out the logistic model using the point estimates of the model parameters.

\(log(\frac{p}{1-p}) = 11.6630 - 0.2162 \times \text{Temperature}\)

  1. Based on the model, do you think concerns regarding O-rings are justified? Explain.

Yes. Temperature is a statistically significant variable. To see this effect consider the following: What is the probability of failure when the launch temperature is 81 degrees? What is the probability of failure at 53?

\(P = \frac{e^L}{1 + e^L}\) where \(L = 11.6630 - 0.2162 \times \text{Temperature}\)

probability_of_failure <- function(temperature){
  l <- 11.6630 - 0.2162 * temperature
  round(exp(l) / (1 + exp(l)), 3)
}

probability_of_failure(81)
## [1] 0.003
probability_of_failure(53)
## [1] 0.551

The probability of failure increases from 0 to 0.6 within the observed extreme temperatures.

8.18 Challenger disaster, Part II.

Exercise 8.16 introduced us to O-rings that were identified as a plausible explanation for the breakup of the Challenger space shuttle 73 seconds into takeoff in 1986. The investigation found that the ambient temperature at the time of the shuttle launch was closely related to the damage of O-rings, which are a critical component of the shuttle. See this earlier exercise if you would like to browse the original data.

  1. The data provided in the previous exercise are shown in the plot. The logistic model fit to these data may be written as

\(log(\frac{\hat{p}}{1- \hat{p}}) = 11.6630 − 0.2162 \times \text{Temperature}\)

where \(\hat{p}\) is the model-estimated probability that an O-ring will become damaged. Use the model to calculate the probability that an O-ring will become damaged at each of the following ambient temperatures: 51, 53, and 55 degrees Fahrenheit.

  • \(\hat{p}_\text{51}\) = 0.654
  • \(\hat{p}_\text{53}\) = 0.551
  • \(\hat{p}_\text{55}\) = 0.443

The model-estimated probabilities for several additional ambient temperatures are provided below, where subscripts indicate the temperature:

  • \(\hat{p}_\text{57}\) = 0.341
  • \(\hat{p}_\text{59}\) = 0.251
  • \(\hat{p}_\text{61}\) = 0.179
  • \(\hat{p}_\text{63}\) = 0.124
  • \(\hat{p}_\text{65}\) = 0.084
  • \(\hat{p}_\text{67}\) = 0.056
  • \(\hat{p}_\text{69}\) = 0.037
  • \(\hat{p}_\text{71}\) = 0.024
  1. Add the model-estimated probabilities from part (a) on the plot, then connect these dots using a smooth curve to represent the model-estimated probabilities.
library(ggplot2)
temp <- seq( 51, 71, 2)
p <- probability_of_failure(temp)
df <- data.frame(temperature = temp, probability_of_failure = p)

spline_int <- as.data.frame(spline(df$temp, df$probability_of_failure))

ggplot(df) + 
  geom_point(aes(x = temp, y = probability_of_failure), size = 3) +
  geom_line(data = spline_int, aes(x = x, y = y)) +
  labs(x = "Temperature (degrees Fahrenheit)", y = "Probability of Failure")

  1. Describe any concerns you may have regarding applying logistic regression in this application, and note any assumptions that are required to accept the model’s validity

This model may underestimate the risk at the higher temperatures. From the observational data we see 2 of 3 cases at 70 degrees had a failure. The model would predict 0.03. Since we are dealing with human lives an abundance of caution should be exercised.

There are two assumptions required to accept the model’s validity: Each outcome is independent of the other outcomes and each predictor is linearly related if all other predictors are held constant. The outcomes might not be independent as different manufacturing processes might be employed in response to a previous shuttle launch. It also doesn’t appear that the risk of failure and the temperature are linearly related.