Linear Regression Hyp testing Flashcards
1
Q
Normal hypothesis test SLR (5 steps)
A
- H0: B1=0 (slope is 0) vs Ha (can be upper, lower or two tailed)
- define alpha and get crit value t* using table and alpha
- get test stat with t = b1/SEb1
- compare t to t* to see if you reject
- conclusion
2
Q
ANOVA test for SLR (4 things to know)
A
Note: can only be 2 tail but you dont double bc ANOVA
- start by filling out the table. Remember that MS = SS/DF. DF1 is always 1, DF2 is always n-2 , and total DF is always n-1 (n-2 +1 = n -1)
- Also know that SSM/SST = r^2
- Know that F = t^2
3
Q
Multiple Linear Regression (3 things to know)
A
- We have 2 or more X’s (explanatory variables) that are independent.
- Model becomes y = B0 + B1x1 +B2x2 +B3x3….BiXi + Ei.
- Confidence intervals are done one line at a time so its the same as SLR, DF = (n - k) where K is the number of variables including y
4
Q
MLR ANOVA
A
mostly the exact same as with SLR, but DF are different:
DF1 = K-1
DF2 = N -K
DF3 = DF1 +DF2