7 - Multiple Regression Flashcards

1
Q

What is multiple regression?

A

A way of predicting a dependent variable from a set of independent variables

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

How many regression coefficients (b’s) does a multiple linear regression have?

A

One per independent variable

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

What are the assumptions of multiple regression?

A
  1. Independence
  2. Normality
  3. Homoscedasticity
  4. Linearity
  5. Multicollinearity
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the assumption of multicollinearity?

A

Two predictors should not be too highly correlated (0.8 or 0.9)

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

When will a multiple regression model have a high R^2?

A

When the regression model has variables that are statistically significant

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

How can an F-Test be used to test R^2?

A

An F-Test can be used to test competing models by testing the difference between R^2s

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

What test can be used to test each partial regression coefficient, and how?

A

A t-test FINISH THIS BECAUSE IDKK

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

What are the 3 ways to build regression models?

A
  1. Hierarchical
  2. Simultaneous Forced Entry
  3. Stepwise
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Describe the hierarchical approach to building regression models.

A

Independent variables are entered in stages (based on theory)

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

Describe the simultaneous forced entry approach to building regression models.

A

All independent variables are entred together.

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

Describe the stepwise approach to building regression models.

A

Independent variables are entered according to some order. This could be in order of size/ correlation with the dependent variable or in order of significance.

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

What R function can you use to determine the confidence intervals on the estimates of a regression model?

A

confint()

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

What R function can you use to determine the standardized Beta coefficients of a regression model?

A

lm.beta() from the QuantPsyc package

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

What R function can you use to compare the fit of 2 regression models?

A

anova()

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

What is the Akaike Information Criterion?

A

A method for evaluating how well a model fits the data it was generated from.

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

What R function can be used to generate AIC?

A

extractAIC()

17
Q

What AIC values indicate a better model fit?

A

Smaller values

18
Q

What is the root mean square error?

A

It is the square root of the variance of the residuals. In other words, it measures how far the predicted values are from the observed values in a regression analysis. (How concentrated the data are from the line of best fit).

19
Q

In what cases is the root mean square error most useful?

A

In cases where the model’s aim is to predict values.

20
Q

What root mean square errors are preferred?

A

Smaller values (0 indicates perfect fit).

21
Q

What R function can be used to get the root mean square error?

A

performance() from performance package.