Topic 12: Time Series Analysis Flashcards

1
Q

What test do you use to test if a series is highly persistent?

A

The Dickey-Fuller Test

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

How do you run a Dickey-Fuller test?

A

Make sure the regression is set for time series with tsset time, then use the command “dfuller varname” for the variable of interest. The null hypothesis is unit root, so small p values reject unit root.

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

What does it mean to say a series has a unit root?

A

When a time series rho value is close to or equal to 1, a highly persistent series. yt = py(t-1) + et. Can cause spurious regression problems. Not much change from year to year.

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

What does it mean to say a series is highly persistent?

A

It means that distant-future outcomes are highly correlated with current outcomes in the time series.

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

What is serial correlation?

A

Also called auto-correlation, when a time series or panel data model has correlation between errors in different time periods.

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

What is a spurious regression problem?

A

Occurs when two series when regressing two unit root series. A high persistence in the regression is picked up and spuriously strongly statistically significant, but not actually from the data, from the persistence.

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

What is a consequence of serially correlated errors?

A

Inconsistent standard errors. As long as there is a zero conditional mean, the estimates are unbiased.

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

What is the null hypothesis of the Dickey-Fuller test?

A

Unit root

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

What kind of estimation would you do to correct for serial correlation in a time series regression model?

A

The Cochrane-Orcutt/Prais-Winsten estimation process to correct the standard errors.

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

Stata: How to run a Cochran-Orcutt process?

A

Set the regression to run a time series “tsset time, year”, run a regression, predict the residuals, reg uhat l.uhat, the L1 value indicates how much correlation. Gen new x and y variables: gen newy=(y - L1*l.y), then reg newy newx. Is it statistically significant? Do it again if not.

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

What is long run propensity?

A

In a distributed lag model, it is the overall change in y given a permanent one unit increase in x, as given by the sum of all the coefficients current and lagged.

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

Does serial correlation cause bias and inconsistency in the OLS estimates?

A

No, it causes inconsistency in the standard errors and variances though.

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

What will regressing a highly persistent time series on another cause?

A

Spurious results.

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

How can you make a highly persistent time series weakly dependent?

A

By using first differencing.

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

What is first differencing?

A

A transformation done on time series by taking the difference of two adjacent time periods, earlier from the later.

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

Does using first differencing change how you interpret the variable of interest?

A

No.

17
Q

Stata: How do you run a regression on models with differences and lags of -1 or more?

A

Use the “reg” command then “d.” before the variable, if using lags use “l.”, “l2.”, “l3.” and so on for more lags. For both use “d.l.”

18
Q

When using several lagged variables, what is the interpretation for when only one lag is statistically significant?

A

For every one unit increase in x, there is a L increase in y, holding other factors constant.

19
Q

What makes time series estimation different from the previous estimation of cross sectional data?

A

The order of the entries matter, thus violating the random variable assumption.

20
Q

Can you run a regular regression on time series data?

A

No, use the command “tsset var, year”

21
Q

When would we use a finite distributed lag model?

A

When we want to see if the timing of x affects y, is it immediate or does it take time?

22
Q

What is impact propensity?

A

In a distributed lag model, the immediate change in y given a one unit increase in x.

23
Q

What is seasonality?

A

Seasonality refers to a time series showing changes that have to do with the time of year, affected by things like holidays and weather.

24
Q

How can we test for seasonality?

A

By including seasonal dummy variables and then performing a joint f-test for their significance. Can be done similarly for days of the week, month, etc.

25
Q

What is random walk?

A

A value equal to last year’s value plus some noise (no rho) yt = y(t-1) + et

26
Q

What is drift?

A

Trending up or down, with random walk drift is a: yt = a + y(t-1) + et

27
Q

How do you test for a highly persistent series without a drift (alpha) term?

A

Use the command “, noconst” with either your lagged regression or dfuller command, if the graph looks like it has up or down trend.

28
Q

How to test for serial correlation?

A

Run the regression, save residuals, regress uhat on l.uhat if close to = no problem, not equal to 0, serial correlation, =0 unit root.