Methods - Chapter 13

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/11

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 3:36 AM on 5/2/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

12 Terms

1
New cards

Multiple Linear Regression Model

y = β0 + β1x1 + β2x2 + … + βpxp + ε

2
New cards

Multiple Regression Equation

E(y) = β0 + β1x1 + β2x2 + … + βpxp

3
New cards

Estimated Multiple Regression Equation

ŷ = b0 + b1x1 + b2x2 + … + bpxp

4
New cards

Least Squares Criterion

minΣ(yi - ŷi)2; minimize the error between the actual data value and the regression result

5
New cards

Multiple Regression F Test

determines whether a significant relationship exists between y and the set of all independent variables; tests for overall significance.

6
New cards

Multiple Regression T Test

determines whether a significant relationship exists between y and x1, x2 etc; tests for individual significance of each variable.

7
New cards

Multiple Significance Hypotheses

H0: βi = 0 (all slopes β1, β2, etc.), HA: βi ≠ 0

8
New cards

T Statistic

= MSR / MSE

9
New cards

Multicollinearity

when some independent variables are HIGHLY correlated => essentially a repeat of a variable, useless. Choose the better one out of those variables, the one with higher significance.

10
New cards

Correlation Check

always check the correlation between all independent variables; avoid correlations >0.7 that cause multicollinearity.

11
New cards

Dummy Variable

the variable that equals 1, indicating a value that belongs in a categorical group.

12
New cards

R2 Adjusted

R2 adjusted for the number of independent variables = 1 - (1-r2)(n-1/n-k-1), most reliable for multi regression model.