Nov 14, 2024
Project: Draft report due + peer review in December 2 lab
Statistics experience due Tuesday, November 26
HW 04 released later today. Due Thursday, November 21
Test of significance for overall logistic regression model
Test of significance for a subset of model coefficients
Test of significance for a single coefficient
This data set is from an ongoing cardiovascular study on residents of the town of Framingham, Massachusetts. We want to examine the relationship between various health characteristics and the risk of having heart disease.
high_risk
:
age
: Age at exam time (in years)
totChol
: Total cholesterol (in mg/dL)
currentSmoker
: 0 = nonsmoker, 1 = smoker
education
: 1 = Some High School, 2 = High School or GED, 3 = Some College or Vocational School, 4 = College
Using age
, totChol
, currentSmoker
heart_disease_fit <- glm(high_risk ~ age + totChol + currentSmoker,
data = heart_disease, family = "binomial")
tidy(heart_disease_fit, conf.int = TRUE) |>
kable(digits = 3)
term | estimate | std.error | statistic | p.value | conf.low | conf.high |
---|---|---|---|---|---|---|
(Intercept) | -6.673 | 0.378 | -17.647 | 0.000 | -7.423 | -5.940 |
age | 0.082 | 0.006 | 14.344 | 0.000 | 0.071 | 0.094 |
totChol | 0.002 | 0.001 | 1.940 | 0.052 | 0.000 | 0.004 |
currentSmoker1 | 0.443 | 0.094 | 4.733 | 0.000 | 0.260 | 0.627 |
Similar to linear regression, we can test the overall significance for a logistic regression model, i.e., whether there is at least one non-zero coefficient in the model
The likelihood ratio test compares the fit of a model with no predictors to the current model.
Let
where
When
The p-value is calculated as
Large values of
Calculate the log-likelihood for the null and alternative models
[1] -1737.735
[1] -1612.406
Calculate the p-value
Conclusion
The p-value is small, so we reject
Suppose there are two models:
Reduced Model: includes predictors
Full Model: includes predictors
We can use the likelihood ratios to see if any of the new predictors are useful
This is called a drop-in-deviance test (also known as nested likelihood ratio test)
The deviance is a measure of the degree to which the predicted values are different from the observed values (compares the current model to a “saturated” model)
In logistic regression,
Note:
The test statistic is
The p-value is calculated using a
Should we add education
to the model?
Reduced model: age
, totChol
, currentSmoker
Full model: age
, totChol
, currentSmoker
, education
Calculate deviances
Calculate p-value
What is your conclusion? Would you include education
in the model that already has age
, totChol
, currentSmoker
?
Conduct the drop-in-deviance test using the anova()
function in R with option test = "Chisq"
Similar to linear regression, we can use AIC and BIC to compare models.
You want to select the model that minimizes AIC / BIC
AIC for reduced model (age
, totChol
, currentSmoker
)
BIC for reduced model (age
, totChol
, currentSmoker
)
When
How do we know the distribution of
The expected value of
where
Hypotheses:
(Wald) Test Statistic:
where
P-value:
We can calculate the C% confidence interval for
where
Note
This is an interval for the change in the log-odds for every one unit increase in
The change in odds for every one unit increase in
Interpretation: We are
age
term | estimate | std.error | statistic | p.value | conf.low | conf.high |
---|---|---|---|---|---|---|
(Intercept) | -6.673 | 0.378 | -17.647 | 0.000 | -7.423 | -5.940 |
age | 0.082 | 0.006 | 14.344 | 0.000 | 0.071 | 0.094 |
totChol | 0.002 | 0.001 | 1.940 | 0.052 | 0.000 | 0.004 |
currentSmoker1 | 0.443 | 0.094 | 4.733 | 0.000 | 0.260 | 0.627 |
Hypotheses:
age
term | estimate | std.error | statistic | p.value | conf.low | conf.high |
---|---|---|---|---|---|---|
(Intercept) | -6.673 | 0.378 | -17.647 | 0.000 | -7.423 | -5.940 |
age | 0.082 | 0.006 | 14.344 | 0.000 | 0.071 | 0.094 |
totChol | 0.002 | 0.001 | 1.940 | 0.052 | 0.000 | 0.004 |
currentSmoker1 | 0.443 | 0.094 | 4.733 | 0.000 | 0.260 | 0.627 |
Test statistic:
age
term | estimate | std.error | statistic | p.value | conf.low | conf.high |
---|---|---|---|---|---|---|
(Intercept) | -6.673 | 0.378 | -17.647 | 0.000 | -7.423 | -5.940 |
age | 0.082 | 0.006 | 14.344 | 0.000 | 0.071 | 0.094 |
totChol | 0.002 | 0.001 | 1.940 | 0.052 | 0.000 | 0.004 |
currentSmoker1 | 0.443 | 0.094 | 4.733 | 0.000 | 0.260 | 0.627 |
P-value:
age
term | estimate | std.error | statistic | p.value | conf.low | conf.high |
---|---|---|---|---|---|---|
(Intercept) | -6.673 | 0.378 | -17.647 | 0.000 | -7.423 | -5.940 |
age | 0.082 | 0.006 | 14.344 | 0.000 | 0.071 | 0.094 |
totChol | 0.002 | 0.001 | 1.940 | 0.052 | 0.000 | 0.004 |
currentSmoker1 | 0.443 | 0.094 | 4.733 | 0.000 | 0.260 | 0.627 |
Conclusion:
The p-value is very small, so we reject
age
term | estimate | std.error | statistic | p.value | conf.low | conf.high |
---|---|---|---|---|---|---|
(Intercept) | -6.673 | 0.378 | -17.647 | 0.000 | -7.423 | -5.940 |
age | 0.082 | 0.006 | 14.344 | 0.000 | 0.071 | 0.094 |
totChol | 0.002 | 0.001 | 1.940 | 0.052 | 0.000 | 0.004 |
currentSmoker1 | 0.443 | 0.094 | 4.733 | 0.000 | 0.260 | 0.627 |
Interpret the 95% confidence interval for age
in terms of the odds of being high risk for heart disease.
Test a single coefficient
Likelihood ratio test
Drop-in-deviance test
Wald hypothesis test and confidence interval
Test a subset of coefficients
Likelihood ratio test
Drop-in-deviance test
Can use AIC and BIC to compare models in both scenarios