Neas-Seminars

TS Module 3 Trends


http://33771.hs2.instantasp.net/Topic8642.aspx

By NEAS - 12/3/2009 8:26:30 AM

TS Module 3 Trends

 

(The attached PDF file has better formatting.)

 


           Deterministic vs stochastic trends

           Estimation of a constant mean


 

 

Read Section 3.1, “Deterministic vs stochastic trends,” on pages 27-28. The authors say that “Many authors use the word trend only for a slowly changing mean function, such as a linear time trend, and use the term seasonal component for a mean function that varies cyclically. We do not find it useful to make such distinctions here.” In practice, statisticians distinguish seasonal effects from long-term trends. Many student projects examine cycles in time series and separate them from long-term trends.

 

Read Section 3.2, “Estimation of a constant mean,” on pages 28-30. Know equations 3.2.1 through 3.2.5 on pages 28 and 29; you will not be tested on equation 3.2.6. The final exam tests the example on the bottom of page 28 and the formulas on page 29. It does not give complex time series or test equation 3.2.3.

 

The authors give many examples of time series graphs. All graphs show the R code at the bottom, and the data is in the TSA package. No knowledge of R is required for this course. But reproducing the graphs helps you understand how the time series parameters affect the sample autocorrelations and other output.

 

By nkingsley - 1/21/2016 2:30:39 PM

I know this was posted a million years ago but since I initially had the same issue and resolved it, I am posting that here.

I am using y1 instead of yk to simplify in my mind...
y1=COV(et - .5et-1, et-1 - .5et-2) = all other combinations of covariances are 0 so what remains is COV(et-1,-.5et-1) = -.5COV(et-1,et-1) = -0.5VAR(e) = -.5

Var(Yt) = Var(et-.5et-1) = Var(et) - (-.5)^2Var(et-1) = 1.25

p1 = -.5/1.25 = -.4

Hope that helps someone.