1/11
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
Multiple Linear Regression Model
y = β0 + β1x1 + β2x2 + … + βpxp + ε
Multiple Regression Equation
E(y) = β0 + β1x1 + β2x2 + … + βpxp
Estimated Multiple Regression Equation
ŷ = b0 + b1x1 + b2x2 + … + bpxp
Least Squares Criterion
minΣ(yi - ŷi)2; minimize the error between the actual data value and the regression result
Multiple Regression F Test
determines whether a significant relationship exists between y and the set of all independent variables; tests for overall significance.
Multiple Regression T Test
determines whether a significant relationship exists between y and x1, x2 etc; tests for individual significance of each variable.
Multiple Significance Hypotheses
H0: βi = 0 (all slopes β1, β2, etc.), HA: βi ≠ 0
T Statistic
= MSR / MSE
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.
Correlation Check
always check the correlation between all independent variables; avoid correlations >0.7 that cause multicollinearity.
Dummy Variable
the variable that equals 1, indicating a value that belongs in a categorical group.
R2 Adjusted
R2 adjusted for the number of independent variables = 1 - (1-r2)(n-1/n-k-1), most reliable for multi regression model.