Topic 9: Heteroskedasticity Flashcards

1
Q

Under what conditions can we dispense with the normality of the error term and still perform valid statistical analysis?

A

If the other MLR assumptions hold and we have a large sample size.

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

What is the formula for the estimate of a heteroskedastic robust variance of beta^1 in the MLR?

A

Var(beta^1) = [sum (r^ij)^2 * (u^ij)^2]
——————————————-
[sum (r^ij)^2]^2

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

What is a formula for betaj in the linear probability model where the dependent variable is binary in terms of change based on the model: y = beta0 + beta1x1 +beta2x2 + u?

A

betaj = deltaP ( y=1 | x1, x2)
———————————
delta x1

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

How does heteroskedasticity affect each the bias, consistency, and variance of OLS estimators?

A

The OLS estimator will be unbiased and consistent, but the estimator of the variance of the OLS estimator, and thus standard errors, will be wrong/inconsistent.

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

Are heteroskedasticity robust standard errors valid only in the case of a large sample size?

A

Yes, and if the sample size is large and the error term homoskedastic the robust standard errors are still valid.

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

Are robust standard errors always larger than usual standard errors?

A

No, they can be larger or smaller.

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

IS OLS for heteroskedastic error terms BLUE?

A

No, but they are unbiased and consistent, just not efficient.

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

Stata: How do you create dummy variables for categorical or ordinal variables without creating a new variable for each?

A

use “i.varname” and stata will create dummy variables for each, leaving out the first as the base group, so each coefficient is relative to the base group.

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

What is the Breusch-Pagan test used for?

A

The B-P test is used for testing the heteroskedasticity of the variance of the error term.

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

How does one perform the B-P test?

A

The null hypothesis is homoskedasticity. Estimate your regression by OLS. Save the residuals, uhati, regress uhati^2 on x1….xk. Look at the p-value for F, the overall significance of the regression. Small reject the null, large fail to reject the null.

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

How does one perform the White special test?

A

The null hypothesis is homoskedasticity. Estimate your regression by OLS. Save the residuals, uhati, save the fitted values (predict yhat, xb), generate squared values for each. Regress uhati^2 on yhat and yhat2. Look at the p-value for F, the overall significance of the regression. Small reject the null, large fail to reject the null.

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

What do we use the White special test for?

A

It is a test for homoskedasticity that can provide evidence of correlation between the fitted values and the residuals by using linear combinations of the fitted values.

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

What is the difference between the B-P test and White test?

A

The White test includes linear combinations of the original variables and the B-P test does not. The B-P test is intended for larger sample sizes. White is intended to test for forms of heteroskedasticity that invalidate test stats in linear combinations of the x’s.

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

If your tests have small p values, do we reject the null hypothesis that the standard errors are homoskedastic? If so what do we do?

A

Yes. We should use robust standard errors, by using the “,robust” post-estimation command.

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

How does heteroskedasticity robust procedures help the econometrician?

A

They are valid in large sample sizes whether or not the errors have a constant variance (under homo or heteroskedasticity, under the later produces consistent standard errors), allowing one to perform statistical analysis without the homoskedasticity assumption.

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

Why use the White special test instead of the White test?

A

The white test is more labor intensive, having to generate several more regressors, the special test is faster.

17
Q

Stata: how do you obtain heteroskedasticity robust standard errors?

A

With the post-regression command “, robust”

18
Q

When using the Linear Probability Model (LPM), what does having a binary dependent variable do to the procedure and interpretation of the regression?

A

Heteroskedasticity should always be assumed for LPM, as a consequence of which, we should always use the robust post-regression command.