Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
In the MAT8181 graduate course on Time Series, we will discuss (almost) only causal models. For instance, with
with some white noise
which is actually a mean-square convergent series (using simple Analysis arguments on series). From that expression, we can easily see that
Consider now the case where
cannot be defined (the series does not converge, in
which is actually well defined. And in that case, the sequence of random variables
Now, let us spent some time with this stationary time series, considered as unatural in Brockwell and Davis (1991). One point is that, in the previous case (where
All that looks nice, if you’re willing to understand thing at some theoretical level. What does all that mean from a computational perspective ? Consider some white noise (this noise actually does exist whatever you want to define, based on that time series)
> n=10000 > e=rnorm(n) > plot(e,type="l",col="red")
If we look at the simple case, to start with,
> phi=.8 > X=rep(0,n) > for(t in 2:n) X[t]=phi*X[t-1]+e[t]
The time series – the latest 1,000 observations – looks like
Now, if we use the cumulated sum of the noise,
> Y=rep(0,n) > for(t in 2:n) Y[t]=sum(phi^((0:(t-1)))*e[t-(0:(t-1))])
we get
Which is exactly the same process ! This should not surprise us because that’s what the theory told us. Now, consider the problematic case, where
> phi=1.1 > X=rep(0,n) > for(t in 2:n) X[t]=phi*X[t-1]+e[t]
Clearly, that series is non-stationary (just look at the first 1,000 values)
Now, if we look at the series obtained from the cumulated sum of future values of the noise
> Y=rep(0,n) > for(t in 1:(n-1)) Y[t]=sum((1/phi)^((1:(n-t)))*e[t+(1:(n-t))])
We get something which is, actually, stationary,
So, what is this series exactly ? If you look that the autocorrelation function,
> acf(Y)
we get the autocorrelation function of a (stationary)
> acf(Y)[1] Autocorrelations of series ‘Y’, by lag 1 0.908 > 1/phi [1] 0.9090909
Observe that there is a white noise – call it
This is what we call the canonical form of the stationary process
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.