Lecture 6: Logistic Regression (original) Flashcards

(32 cards)

1
Q

What type of outcome does linear regression model?

A

Continuous outcome

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does a slope coefficient represent in linear regression?

A

a slope coefficient represents the expected change in the dependent variable (Y) for a one-unit increase in the independent variable (X), assuming all other variables in the model are held constant.

It captures the direction and strength of the relationship between the predictor and outcome.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are residuals in linear regression?

A

Errors between predicted and actual values

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What does linear regression assume about the predictor-outcome relationship?

A

That it is linear

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What type of outcome does logistic regression model?

A

Categorical outcome

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Why can’t linear regression be used for binary outcomes?

A
  1. Predicted values aren’t bounded between 0 and 1
  • Linear regression can predict values below 0 or above 1, which makes no sense for probabilities.
  1. Non-constant error variance (heteroskedasticity)
  • Binary outcomes lead to error terms that are not normally distributed and have non-constant variance, violating regression assumptions.
  1. Non-linearity of the probability relationship
  • The relationship between the predictor and the probability of the outcome is typically non-linear, which linear regression cannot model properly.

For these reasons, logistic regression is used instead. It models the log odds of the outcome and ensures predictions are valid probabilities (between 0 and 1).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What function does logistic regression use to constrain predictions between 0 and 1?

A

Logistic function

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the shape of the curve produced by the logistic function?

A

S-shaped (sigmoidal)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What do odds represent in logistic regression?

A

The ratio of event to non-event likelihood

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are log odds?

A

The natural log of odds

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What does the coefficient B indicate in logistic regression?

A

Change in log odds per unit increase in the predictor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What does exp(B) represent in logistic regression?

A

Odds ratio

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How are probabilities and odds related?

A

Non-linearly

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What happens to probability as odds increase near 0 or 1?

A

It increases more slowly

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the effect of odds ratios near the extremes of probability?

A

Diminishing effect on probability

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What test checks if a coefficient differs from zero in logistic regression?

17
Q

What does a significant Wald test result indicate?

A

The predictor significantly affects the outcome

18
Q

What does a confidence interval around an odds ratio show?

A

Reliability of the estimate

19
Q

What are Cox & Snell and Nagelkerke examples of?

A

Pseudo-R² statistics

20
Q

What does classification accuracy measure?

A

Correctness of predicted outcomes

21
Q

What does a significant Hosmer-Lemeshow test suggest?

A

Poor model fit

22
Q

What does the omnibus test assess?

A

Whether all predictors improve prediction

23
Q

What method enters all predictors at once in logistic regression?

A

Direct method

24
Q

What method adds predictors in blocks for hypothesis testing?

A

Sequential (hierarchical) method

25
What logistic method adds/removes predictors based on statistics?
Stepwise method
26
What is a risk of the stepwise method?
Overfitting
27
What kind of outcomes does multinomial logistic regression model?
Outcomes with more than two categories
28
How does multinomial regression compare categories?
By creating binary splits using dummy coding
29
What is multinomial logistic regression an extension of?
Binary logistic regression
30
What type of data is logistic regression designed to model?
Categorical outcomes
31
What conceptual tools are key to interpreting logistic regression?
Odds, log odds, and probability curves
32
Why must logistic regression coefficients be interpreted carefully?
Due to the non-linear transformation of probabilities