QA7 - Linear Regression Flashcards

1
Q

Describe the models that can be estimated using linear regression and differentiate from those which can not

A

For linear regression to be applicable:
1. explanatory variables are linear in unknown coefficients
2. error must be additive
3. explanatory variables must be observable

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

Describe the key assumptions of OLS parameter estimation

A
  1. error has mean zero
  2. data are realisations from iid random variables
  3. variance of data greater than zero
  4. variance of error is constant
  5. no outliers in the data
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Construct, apply, and interpret hypothesis tests and confidence intervals for a single regression coefficient in a regression

A

s = sqrt((1/n-2) * sum(errors ^2))

For B:
T = (bhat - b0) / (s / sqrt(sum (xi - bxar)^2)) ~ N(alpha)

For a:
T = (ahat - a0) / ((s^2 * (1/n) * sum(xi^2)) / sum((xi - xbar)^2)) ~N(alpha)

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