The fractional differencing enables the degree of differencing d to take any real value rather than being restricted to integer values. The fractionally differenced processes are capable of modeling long-term persistence. The process
is known as a fractional Gaussian noise process or an ARFIMA() process, where , is a white noise process with mean 0 and variance , and B is the backshift operator such that . An ARFIMA() model extends the ARFIMA() model and combines fractional differencing with an ARMA() model.
Consider an ARFIMA() model that is represented as , where . The following statements accomplish several tasks:
generate 300 observations of simulated data
obtain the fractionally differenced data
compute the autocovariance function
compute the log-likelihood function
fit a fractionally integrated time series model to the data
The output is shown in Output 13.14 through Output 13.18.
proc iml; /* ARFIMA(0,0.4,0) */ lag = (0:12)`; call farmacov(autocov_D_IS_04, 0.4); call farmacov(D_IS_005, 0.05); print lag autocov_D_IS_04 D_IS_005; d = 0.4; call farmasim(yt, d) n=300 sigma=2 seed=5345; call fdif(zt, yt, d); call farmalik(lnl, yt, d); print lnl; call farmafit(d, ar, ma, sigma, yt); print d sigma;
The FARMASIM function generates the data shown in Output 13.14.
The FDIF function creates the fractionally differenced process. Output 13.15 shows a white noise series.
In Output 13.16, the first column displays the autocovariance function of the ARFIMA(0,0.4,0) model, and the second column displays the autocovariance function of the ARFIMA(0,0.05,0) model. The first column decays to zero more slowly than the second column.
Output 13.16: Autocovariance Functions of ARFIMA(0,0.4,0) and ARFIMA(0,0.05,0) Models (FARMACOV)
lag | autocov_D_IS_04 | D_IS_005 |
---|---|---|
0 | 2.0700983 | 1.0044485 |
1 | 1.3800656 | 0.0528657 |
2 | 1.2075574 | 0.0284662 |
3 | 1.1146683 | 0.0197816 |
4 | 1.0527423 | 0.0152744 |
5 | 1.0069709 | 0.0124972 |
6 | 0.9710077 | 0.0106069 |
7 | 0.9415832 | 0.0092333 |
8 | 0.9168047 | 0.008188 |
9 | 0.8954836 | 0.0073647 |
10 | 0.8768277 | 0.0066985 |
11 | 0.8602838 | 0.006148 |
12 | 0.8454513 | 0.0056849 |
In Output 13.17, the first row value is the log-likelihood function of the ARFIMA(0,0.4,0) model. Because the default option of the estimates method is the conditional sum of squares, the last two rows of Output 13.17 contain missing values.
Output 13.18 shows parameter estimates for the simulated data. The parameter estimates are and , whereas the true parameters of the data generating process are and .