This is an example of a logistic regression model with one predictor (personality type). How do you interpret β1?
In this example, the predictor is personality type and the outcome is CHD. Based on the estimated coefficients, how do you interpret the intercept and slope?
How does the sign of β affect the change in odds?
In general
- When β>0, then exp(β) > 1, so increase in odds
- When β<0, then exp(β) <1, so decrease in odds
This is an example of a model with multiple predictors. How do you interpret the estimated coefficients?
What are the different types of categorical variables?
What is deviance?
For a nested model, what are the null and alternative hypotheses?
What are the assumptions of logistic regression?
What are the four main diagnostic plots used logistic regression?
How can you assess the linearity assumption and what is the problem with this in logistic regression?
What is the major difference between linear and logistic regression?
When evaluating accuracy (true and false positives and negatives), what are Y and Y hat?
Y: observed event, Y hat: predicted event
What are Y and Y hat for a true positive?
Y = 1 and Y hat = 1
What are Y and Y hat for a true negative?
Y = 0 and Y hat = 0
What are Y and Y hat for a false positive?
Y = 0 and Y hat = 1
What are Y and Y hat for a false negative?
Y = 1 and Y hat = 0
Confusion matrix for accuracy
What is accuracy and how do you calculate it?
What is precision and how do you calculate it?
What is specificity, and how do you calculate it?
What is sensitivity/recall, and how do you calculate it?
What is the difference between precision and sensitivity?
What is calibration and how can you measure it?
What is discrimination?