G13ACF (PDF version)
G13 Chapter Contents
G13 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

G13ACF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

 Contents

    1  Purpose
    7  Accuracy

1  Purpose

G13ACF calculates partial autocorrelation coefficients given a set of autocorrelation coefficients. It also calculates the predictor error variance ratios for increasing order of finite lag autoregressive predictor, and the autoregressive parameters associated with the predictor of maximum order.

2  Specification

SUBROUTINE G13ACF ( R, NK, NL, P, V, AR, NVL, IFAIL)
INTEGER  NK, NL, NVL, IFAIL
REAL (KIND=nag_wp)  R(NK), P(NL), V(NL), AR(NL)

3  Description

The data consist of values of autocorrelation coefficients r1,r2,,rK, relating to lags 1,2,,K. These will generally (but not necessarily) be sample values such as may be obtained from a time series xt using G13ABF.
The partial autocorrelation coefficient at lag l may be identified with the parameter pl,l in the autoregression
xt = cl + pl,1 xt-1 + pl,2 xt-2 ++ pl,l xt-l + el,t  
where el,t is the predictor error.
The first subscript l of pl,l and el,t emphasizes the fact that the parameters will in general alter as further terms are introduced into the equation (i.e., as l is increased).
The parameters are determined from the autocorrelation coefficients by the Yule–Walker equations
ri = pl,1 ri-1 + pl,2 ri-2 ++ pl,l ri-l ,   i=1,2,,l  
taking rj=rj when j<0, and r0=1.
The predictor error variance ratio vl=varel,t/varxt is defined by
vl = 1- pl,1 r1 - pl,2 r2 -- pl,l rl .  
The above sets of equations are solved by a recursive method (the Durbin–Levinson algorithm). The recursive cycle applied for l=1,2,,L-1, where L is the number of partial autocorrelation coefficients required, is initialized by setting p1,1=r1 and v1=1-r12.
Then
p l + 1 , l + 1 = r l + 1 - p l , 1 r l - p l , 2 r l - 1 - - p l , l r 1 / v l p l + 1 , j = p l , j - p l + 1 , l + 1 p l , l + 1 - j ,   j=1,2,,l v l + 1 = v l 1 - p l + 1 , l + 1 1 + p l + 1 , l + 1 .  
If the condition pl,l1 occurs, say when l=l0, it indicates that the supplied autocorrelation coefficients do not form a positive definite sequence (see Hannan (1960)), and the recursion is not continued. The autoregressive parameters are overwritten at each recursive step, so that upon completion the only available values are pLj, for j=1,2,,L, or pl0-1,j if the recursion has been prematurely halted.

4  References

Box G E P and Jenkins G M (1976) Time Series Analysis: Forecasting and Control (Revised Edition) Holden–Day
Durbin J (1960) The fitting of time series models Rev. Inst. Internat. Stat. 28 233
Hannan E J (1960) Time Series Analysis Methuen

5  Parameters

1:     RNK – REAL (KIND=nag_wp) arrayInput
On entry: the autocorrelation coefficient relating to lag k, for k=1,2,,K.
2:     NK – INTEGERInput
On entry: K, the number of lags. The lags range from 1 to K and do not include zero.
Constraint: NK>0.
3:     NL – INTEGERInput
On entry: L, the number of partial autocorrelation coefficients required.
Constraint: 0<NLNK.
4:     PNL – REAL (KIND=nag_wp) arrayOutput
On exit: Pl contains the partial autocorrelation coefficient at lag l, pl,l, for l=1,2,,NVL.
5:     VNL – REAL (KIND=nag_wp) arrayOutput
On exit: Vl contains the predictor error variance ratio vl, for l=1,2,,NVL.
6:     ARNL – REAL (KIND=nag_wp) arrayOutput
On exit: the autoregressive parameters of maximum order, i.e., pLj if IFAIL=0, or pl0-1,j if IFAIL=3, for j=1,2,,NVL.
7:     NVL – INTEGEROutput
On exit: the number of valid values in each of P, V and AR. Thus in the case of premature termination at iteration l0 (see Section 3), NVL is returned as l0-1.
8:     IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

If on entry IFAIL=0 or -1, explanatory error messages are output on the current error message unit (as defined by X04AAF).
Errors or warnings detected by the routine:
IFAIL=1
On entry,NK0,
orNL0,
orNK<NL.
IFAIL=2
On entry, the autocorrelation coefficient of lag 1 has an absolute value greater than or equal to 1.0; no recursions could be performed.
IFAIL=3
Recursion has been prematurely terminated; the supplied autocorrelation coefficients do not form a positive definite sequence (see Section 3). Parameter NVL returns the number of valid values computed.
IFAIL=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.8 in the Essential Introduction for further information.
IFAIL=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.7 in the Essential Introduction for further information.
IFAIL=-999
Dynamic memory allocation failed.
See Section 3.6 in the Essential Introduction for further information.

7  Accuracy

The computations are believed to be stable.

8  Parallelism and Performance

Not applicable.

9  Further Comments

The time taken by G13ACF is proportional to NVL 2.

10  Example

This example uses an input series of 10 sample autocorrelation coefficients derived from the original series of sunspot numbers generated by the G13ABF example program. The results show five values of each of the three output arrays: partial autocorrelation coefficients, predictor error variance ratios and autoregressive parameters. All of these were valid.

10.1  Program Text

Program Text (g13acfe.f90)

10.2  Program Data

Program Data (g13acfe.d)

10.3  Program Results

Program Results (g13acfe.r)

This plot shows the partial autocorrelations for all possible lag values. Reference lines are given at ±z0.975/n.
GnuplotProduced by GNUPLOT 4.6 patchlevel 3 −0.6 −0.4 −0.2 0 0.2 0.4 0.6 0.8 1 0 10 20 30 40 50 PACF Lag Example Program Partial Autocorrelation Coefficients gnuplot_plot_1 gnuplot_plot_2 gnuplot_plot_3

G13ACF (PDF version)
G13 Chapter Contents
G13 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2015