Graded: 8.2, 8.4, 8.8, 8.16, 8.18

8.2 Baby Weights, Part 2.

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.

a.) Write the equstion of the regression line.

Ans : \(what{weight}\) = 120.07 + (-1.93) * parity

b.) Interpret the slope in this context, and calculate the predicted birth weight of first borns and others.

Ans : The average birth weight of a first - born baby is 1.93 oz higher than those that others.

c.) Is there a statistically significant relationship between the average birth weight and parity ?

Ans : Not really. The p-value for parity is greater than .05

8.4 Absenteeism.

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 SouthWales, Australia, in a particular school year. Below are three observations from this data set.

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).

a.) Write the equation of the regression line.

Ans : \(what{dayabsnt}\) = 18.93 + (-9.11) eth + 3.10 sex +2.15 * lrn

b.) Interpret each one of the slope in this context.

Ans : If the student is aboriginal, they will have 9.11 more days absnt. If student is male, they are likely to have 3.10 more days absnt. For slow learner, they will have 2.15 more days absnt.

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

[1] -22.18

d.) 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 R2 and the adjusted R2. Note that there are 146 observations in the data set.

[1] 0.08933641
[1] 0.07009704

The R2 is 0.08933641 and adjusted R2 is 0.07009704

8.8 Absenteeism, Part 2.

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.

Which, if any, variable should be removed from the model first?

Ans : We should keep all the variables, but if one needed to be removed we would start with the learner status.

8.16 Challenger Disaster, Part 2.

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.

  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.

Ans : From the table, we can conclude that lower the temperature, the higher the chance of a damaged O-ring.

  1. 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.

Ans : 11.6630 is the first point for the model and -0.2162 is added to the starting place for every degree of temperature. The p-values help us better determine the variable fit in the model.

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

Ans : \(\hat{pFail}\) = e^(11.6630-0.2162 * temp) / (1 + e^(11.6630-0.2162 * temp))

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

Ans : Yes, from the question (a.) it does show that as the temperature drops, the probability of O-ring failure grows. If the temperature drops below 50, the probability of O-Ring failure is greater than 100%.

8.18 Challenger Disaster. Part 2.

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.

8.18

8.18

a.)

[1] 0.6540297 0.5509228 0.4432456

b.) 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.

c.) 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.

We have to be little cautions if the temperature is around 53F, If there are some other factors/assumption to be taken to account around that temp, then the model has to be revisited again.