NAG FL Interface
g13abf (uni_​autocorr)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

g13abf computes the sample autocorrelation function of a time series. It also computes the sample mean, the sample variance and a statistic which may be used to test the hypothesis that the true autocorrelation function is zero.

2 Specification

Fortran Interface
Subroutine g13abf ( x, nx, nk, xm, xv, r, stat, ifail)
Integer, Intent (In) :: nx, nk
Integer, Intent (Inout) :: ifail
Real (Kind=nag_wp), Intent (In) :: x(nx)
Real (Kind=nag_wp), Intent (Out) :: xm, xv, r(nk), stat
C Header Interface
#include <nag.h>
void  g13abf_ (const double x[], const Integer *nx, const Integer *nk, double *xm, double *xv, double r[], double *stat, Integer *ifail)
The routine may be called by the names g13abf or nagf_tsa_uni_autocorr.

3 Description

The data consists of n observations xi, for i=1,2,,n from a time series.
The quantities calculated are
  1. (a)The sample mean
    x¯=i=1nxin.  
  2. (b)The sample variance (for n2)
    s2=i=1n (xi-x¯) 2 (n-1) .  
  3. (c)The sample autocorrelation coefficients of lags k=1,2,,K, where K is a user-specified maximum lag, and K<n, n>1.
    The coefficient of lag k is defined as
    rk=i=1 n-k(xi-x¯)(xi+k-x¯) i=1n (xi-x¯) 2 .  
    See page 496 of Box and Jenkins (1976) for further details.
  4. (d)A test statistic defined as
    stat=nk= 1Krk2,  
    which can be used to test the hypothesis that the true autocorrelation function is identically zero.
    If n is large and K is much smaller than n, stat has a χK2 distribution under the hypothesis of a zero autocorrelation function. Values of stat in the upper tail of the distribution provide evidence against the hypothesis; g01ecf can be used to compute the tail probability.
    Section 8.2.2 of Box and Jenkins (1976) provides further details of the use of stat.

4 References

Box G E P and Jenkins G M (1976) Time Series Analysis: Forecasting and Control (Revised Edition) Holden–Day

5 Arguments

1: x(nx) Real (Kind=nag_wp) array Input
On entry: the time series, xi, for i=1,2,,n.
2: nx Integer Input
On entry: n, the number of values in the time series.
Constraint: nx>1.
3: nk Integer Input
On entry: K, the number of lags for which the autocorrelations are required. The lags range from 1 to K and do not include zero.
Constraint: 0<nk<nx.
4: xm Real (Kind=nag_wp) Output
On exit: the sample mean of the input time series.
5: xv Real (Kind=nag_wp) Output
On exit: the sample variance of the input time series.
6: r(nk) Real (Kind=nag_wp) array Output
On exit: the sample autocorrelation coefficient relating to lag k, for k=1,2,,K.
7: stat Real (Kind=nag_wp) Output
On exit: the statistic used to test the hypothesis that the true autocorrelation function of the time series is identically zero.
8: ifail Integer Input/Output
On entry: ifail must be set to 0, −1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of −1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value −1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value 0 is recommended. 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, nk=value.
Constraint: nk>0.
On entry, nx=value.
Constraint: nx>1.
On entry, nx=value and nk=value.
Constraint: nx>nk.
ifail=2
On entry, all values of x are practically identical. This gives zero variance and means that r and stat are undefined on exit.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

The computations are believed to be stable.

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
g13abf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
g13abf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9 Further Comments

If n<100, or K<10log(n) then the autocorrelations are calculated directly and the time taken by g13abf is approximately proportional to nK, otherwise the autocorrelations are calculated by utilizing fast fourier transforms (FFTs) and the time taken is approximately proportional to nlog(n). If FFTs are used then g13abf internally allocates approximately 4n real elements.
If the input series for g13abf was generated by differencing using g13aaf, ensure that only the differenced values are input to g13abf, and not the reconstituting information.

10 Example

In the example below, a set of 50 values of sunspot counts is used as input. The first 10 autocorrelations are computed.

10.1 Program Text

Program Text (g13abfe.f90)

10.2 Program Data

Program Data (g13abfe.d)

10.3 Program Results

Program Results (g13abfe.r)
This plot shows the autocorrelations for all possible lag values. Reference lines are given at ±z0.975/n.
GnuplotProduced by GNUPLOT 5.4 patchlevel 6 −0.6 −0.4 −0.2 0 0.2 0.4 0.6 0.8 1 0 10 20 30 40 50 ACF Lag "g13abfe.r" using 1:2 refline -refline Example Program Sample Autocorrelation Coefficients