Topic 12: Time Series Analysis Flashcards
What test do you use to test if a series is highly persistent?
The Dickey-Fuller Test
How do you run a Dickey-Fuller test?
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.
What does it mean to say a series has a unit root?
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.
What does it mean to say a series is highly persistent?
It means that distant-future outcomes are highly correlated with current outcomes in the time series.
What is serial correlation?
Also called auto-correlation, when a time series or panel data model has correlation between errors in different time periods.
What is a spurious regression problem?
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.
What is a consequence of serially correlated errors?
Inconsistent standard errors. As long as there is a zero conditional mean, the estimates are unbiased.
What is the null hypothesis of the Dickey-Fuller test?
Unit root
What kind of estimation would you do to correct for serial correlation in a time series regression model?
The Cochrane-Orcutt/Prais-Winsten estimation process to correct the standard errors.
Stata: How to run a Cochran-Orcutt process?
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.
What is long run propensity?
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.
Does serial correlation cause bias and inconsistency in the OLS estimates?
No, it causes inconsistency in the standard errors and variances though.
What will regressing a highly persistent time series on another cause?
Spurious results.
How can you make a highly persistent time series weakly dependent?
By using first differencing.
What is first differencing?
A transformation done on time series by taking the difference of two adjacent time periods, earlier from the later.