NAG FL Interface
g13dsf (multi_​varma_​diag)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

g13dsf is a diagnostic checking routine suitable for use after fitting a vector ARMA model to a multivariate time series using g13ddf. The residual cross-correlation matrices are returned along with an estimate of their asymptotic standard errors and correlations. Also, g13dsf calculates the modified Li–McLeod portmanteau statistic and its significance level for testing model adequacy.

2 Specification

Fortran Interface
Subroutine g13dsf ( k, n, v, kmax, ip, iq, m, par, parhld, qq, ishow, r0, r, rcm, ldrcm, chi, idf, siglev, iw, liw, work, lwork, ifail)
Integer, Intent (In) :: k, n, kmax, ip, iq, m, ishow, ldrcm, liw, lwork
Integer, Intent (Inout) :: ifail
Integer, Intent (Out) :: idf, iw(liw)
Real (Kind=nag_wp), Intent (In) :: v(kmax,n), par((ip+iq)*k*k)
Real (Kind=nag_wp), Intent (Inout) :: qq(kmax,k), r0(kmax,k), r(kmax,kmax,m), rcm(ldrcm,m*k*k)
Real (Kind=nag_wp), Intent (Out) :: chi, siglev, work(lwork)
Logical, Intent (In) :: parhld((ip+iq)*k*k)
C Header Interface
#include <nag.h>
void  g13dsf_ (const Integer *k, const Integer *n, const double v[], const Integer *kmax, const Integer *ip, const Integer *iq, const Integer *m, const double par[], const logical parhld[], double qq[], const Integer *ishow, double r0[], double r[], double rcm[], const Integer *ldrcm, double *chi, Integer *idf, double *siglev, Integer iw[], const Integer *liw, double work[], const Integer *lwork, Integer *ifail)
The routine may be called by the names g13dsf or nagf_tsa_multi_varma_diag.

3 Description

Let Wt = (w1t,w2t,,wkt) T , for t=1,2,,n, denote a vector of k time series which is assumed to follow a multivariate ARMA model of the form
Wt-μ= ϕ1(Wt-1-μ)+ϕ2(Wt-2-μ)++ϕp(Wt-p-μ) +εt-θ1εt-1-θ2εt-2--θqεt-q, (1)
where εt = (ε1t,ε2t,,εkt) T , for t=1,2,,n, is a vector of k residual series assumed to be Normally distributed with zero mean and positive definite covariance matrix Σ. The components of εt are assumed to be uncorrelated at non-simultaneous lags. The ϕi and θj are k×k matrices of parameters. {ϕi}, for i=1,2,,p, are called the autoregressive (AR) parameter matrices, and {θi}, for i=1,2,,q, the moving average (MA) parameter matrices. The parameters in the model are thus the p (k×k) ϕ-matrices, the q (k×k) θ-matrices, the mean vector μ and the residual error covariance matrix Σ. Let
A(ϕ)= [ ϕ1 I 0 . . . 0 ϕ2 0 I 0 . . 0 . . . . . . ϕp-1 0 . . . 0 I ϕp 0 . . . 0 0 ] pk×pk   and  B(θ)= [ θ1 I 0 . . . 0 θ2 0 I 0 . . 0 . . . . . . θq-1 0 . . . I θq 0 . . . . 0 ] qk×qk  
where I denotes the k×k identity matrix.
The ARMA model (1) is said to be stationary if the eigenvalues of A(ϕ) lie inside the unit circle, and invertible if the eigenvalues of B(θ) lie inside the unit circle. The ARMA model is assumed to be both stationary and invertible. Note that some of the elements of the ϕ- and/or θ-matrices may have been fixed at pre-specified values (for example by calling g13ddf).
The estimated residual cross-correlation matrix at lag l is defined to the k×k matrix R^l whose (i,j)th element is computed as
r ^ i j (l) = t = l + 1 n ( ε ^ i t - l - ε ¯ i ) ( ε ^ j t - ε ¯ j ) t = 1 n ( ε ^ i t - ε ¯ i ) 2 t = 1 n ( ε ^ j t - ε ¯ j ) 2 ,   l =0,1,,i​ and ​j=1,2,,k ,  
where ε^it denotes an estimate of the tth residual for the ith series εit and ε¯i=t=1nε^it/n. (Note that R^l is an estimate of E(εt-lεtT), where E is the expected value.)
A modified portmanteau statistic, Q (m) *, is calculated from the formula (see Li and McLeod (1981))
Q(m) * = k2 m(m+1) 2n + n l=1 m r^ (l)T ( R^ 0 −1 R^ 0 −1 ) r^ (l) ,  
where denotes Kronecker product, R^0 is the estimated residual cross-correlation matrix at lag zero and r^(l)=vec(R^lT), where vec of a k×k matrix is a vector with the (i,j)th element in position (i-1)k+j. m denotes the number of residual cross-correlation matrices computed. (Advice on the choice of m is given in Section 9.2.) Let lC denote the total number of ‘free’ parameters in the ARMA model excluding the mean, μ, and the residual error covariance matrix Σ. Then, under the hypothesis of model adequacy, Q (m) *, has an asymptotic χ2-distribution on mk2-lC degrees of freedom.
Let r^̲=(vec(R1T),vec(R2T),,vec(RmT)) then the covariance matrix of r^̲ is given by
Var(r̲^)=[Y-X(XTGGTX)−1XT]/n,  
where Y=Im(ΔΔ) and G=Im(GGT). Δ is the dispersion matrix Σ in correlation form and G a nonsingular k×k matrix such that GGT=Δ-1 and GΔGT=Ik. The construction of the matrix X is discussed in Li and McLeod (1981). (Note that the mean, μ, plays no part in calculating Var(r̲^) and, therefore, is not required as input to g13dsf.)

4 References

Li W K and McLeod A I (1981) Distribution of the residual autocorrelations in multivariate ARMA time series models J. Roy. Statist. Soc. Ser. B 43 231–239

5 Arguments

The output quantities k, n, v, kmax, ip, iq, par, parhld and qq from g13ddf are suitable for input to g13dsf.
1: k Integer Input
On entry: k, the number of residual time series.
Constraint: k1.
2: n Integer Input
On entry: n, the number of observations in each residual series.
3: v(kmax,n) Real (Kind=nag_wp) array Input
On entry: v(i,t) must contain an estimate of the ith component of εt, for i=1,2,,k and t=1,2,,n.
Constraints:
  • no two rows of v may be identical;
  • in each row there must be at least two distinct elements.
4: kmax Integer Input
On entry: the first dimension of the arrays v, qq, r and r0 and the second dimension of the array r as declared in the (sub)program from which g13dsf is called.
Constraint: kmaxk.
5: ip Integer Input
On entry: p, the number of AR parameter matrices.
Constraint: ip0.
6: iq Integer Input
On entry: q, the number of MA parameter matrices.
Constraint: iq0.
Note: ip=iq=0 is not permitted.
7: m Integer Input
On entry: the value of m, the number of residual cross-correlation matrices to be computed. See Section 9.2 for advice on the choice of m.
Constraint: ip+iq<m<n.
8: par((ip+iq)×k×k) Real (Kind=nag_wp) array Input
On entry: the parameter estimates read in row by row in the order ϕ1,ϕ2,,ϕp, θ1,θ2,,θq.
Thus,
  • if ip>0, par((l-1)×k×k+(i-1)×k+j) must be set equal to an estimate of the (i,j)th element of ϕl, for l=1,2,,p and i=1,2,,k;
  • if iq0, par(p×k×k+(l-1)×k×k+(i-1)×k+j) must be set equal to an estimate of the (i,j)th element of θl, for l=1,2,,q and i=1,2,,k.
The first p×k×k elements of par must satisfy the stationarity condition and the next q×k×k elements of par must satisfy the invertibility condition.
9: parhld((ip+iq)×k×k) Logical array Input
On entry: parhld(i) must be set to .TRUE. if par(i) has been held constant at a pre-specified value and .FALSE. if par(i) is a free parameter, for i=1,2,,(p+q)×k×k.
10: qq(kmax,k) Real (Kind=nag_wp) array Input/Output
On entry: qq(i,j) is an efficient estimate of the (i,j)th element of Σ. The lower triangle only is needed.
Constraint: qq must be positive definite.
On exit: if ifail1, then the upper triangle is set equal to the lower triangle.
11: ishow Integer Input
On entry: must be nonzero if the residual cross-correlation matrices {r^ij(l)} and their standard errors {se(r^ij(l))}, the modified portmanteau statistic with its significance and a summary table are to be printed. The summary table indicates which elements of the residual correlation matrices are significant at the 5% level in either a positive or negative direction; i.e., if r^ij(l)>1.96×se(r^ij(l)) then a ‘+’ is printed, if r^ij(l)<-1.96×se(r^ij(l)) then a ‘-’ is printed, otherwise a fullstop (.) is printed. The summary table is only printed if k6 on entry.
The residual cross-correlation matrices, their standard errors and the modified portmanteau statistic with its significance are available also as output variables in r, rcm, chi, idf and siglev.
12: r0(kmax,k) Real (Kind=nag_wp) array Output
On exit: if ij, then r0(i,j) contains an estimate of the (i,j)th element of the residual cross-correlation matrix at lag zero, R^0. When i=j, r0(i,j) contains the standard deviation of the ith residual series. If ifail=3 on exit then the first k rows and columns of r0 are set to zero.
13: r(kmax,kmax,m) Real (Kind=nag_wp) array Output
On exit: r(l,i,j) is an estimate of the (i,j)th element of the residual cross-correlation matrix at lag l, for i=1,2,,k, j=1,2,,k and l=1,2,,m. If ifail=3 on exit then all elements of r are set to zero.
14: rcm(ldrcm,m×k×k) Real (Kind=nag_wp) array Output
On exit: the estimated standard errors and correlations of the elements in the array r. The correlation between r(l,i,j) and r(l2,i2,j2) is returned as rcm(s,t) where s=(l-1)×k×k+(j-1)×k+i and t=(l2-1)×k×k+(j2-1)×k+i2 except that if s=t, then rcm(s,t) contains the standard error of r(l,i,j). If on exit, ifail5, then all off-diagonal elements of rcm are set to zero and all diagonal elements are set to 1/n.
15: ldrcm Integer Input
On entry: the first dimension of the array rcm as declared in the (sub)program from which g13dsf is called.
Constraint: ldrcmm×k×k.
16: chi Real (Kind=nag_wp) Output
On exit: the value of the modified portmanteau statistic, Q (m) *. If ifail=3 on exit then chi is returned as zero.
17: idf Integer Output
On exit: the number of degrees of freedom of chi.
18: siglev Real (Kind=nag_wp) Output
On exit: the significance level of chi based on idf degrees of freedom. If ifail=3 on exit, siglev is returned as one.
19: iw(liw) Integer array Workspace
20: liw Integer Input
On entry: the dimension of the array iw as declared in the (sub)program from which g13dsf is called.
Constraint: liwk×max(ip,iq).
21: work(lwork) Real (Kind=nag_wp) array Workspace
22: lwork Integer Input
On entry: the dimension of the array work as declared in the (sub)program from which g13dsf is called.
Constraint: if lworkk(n+kmax+2)+mk2(NPAR+mk2+1)+ 3k2+(NPAR+1)NPAR, NPAR=(p+q)k2.
23: 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 −1 is recommended since useful values can be provided in some output arguments even when ifail0 on exit. 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:
Note: in some cases g13dsf may return useful information.
ifail=1
On entry, ip=value.
Constraint: ip0.
On entry, ip=0 and iq=0.
Constraint: ip=iq=0 must not hold.
On entry, iq=value.
Constraint: iq0.
On entry, k=value.
Constraint: k1.
On entry, kmax=value and k=value.
Constraint: kmaxk.
On entry, ldrcm=value, m=value and k=value.
Constraint: ldrcmm×k×k.
On entry, liw=value and the minimum size required=value.
Constraint: liwmax(ip,iq).
On entry, lwork=value and the minimum size required=value.
Constraint: lwork must be sufficiently large.
On entry, m=value, ip=value and iq=value.
Constraint: m>ip+iq.
On entry, m=value and n=value.
Constraint: m<n.
ifail=2
On entry, the AR parameter matrices are outside the stationarity region. To proceed you must supply different parameter estimates in the arrays par and qq.
On entry, the covariance matrix qq is not positive definite. To proceed you must supply different parameter estimates in the arrays par and qq.
On entry, the MA parameter matrices are outside the invertibility region. To proceed you must supply different parameter estimates in the arrays par and qq.
ifail=3
On entry, at least one of the residual series in the array v has near-zero variance. In this case chi is set to zero, siglev to one and all the elements of r0 and r are set to zero.
On entry, at least two of the residual series are identical. In this case chi is set to zero, siglev to one and all the elements of r0 and r are set to zero.
ifail=4
Excessive iterations needed to find zeros of determinental polynomials.
ifail=5
On entry, the AR operator has a factor in common with the MA operator. To proceed you must either supply different parameter estimates in the array qq or delete this common factor from the model. In this case, the off-diagonal elements of rcm are returned as zero and the diagonal elements set to 1/n. All other output quantities will be correct.
ifail=6
The matrix rcm could not be computed because one of its diagonal elements was found to be non-positive. In this case, the off-diagonal elements of rcm are returned as zero and the diagonal elements set to 1/n.
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.
g13dsf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
g13dsf 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

9.1 Timing

The time taken by g13dsf depends upon the number of residual cross-correlation matrices to be computed, m, and the number of time series, k.

9.2 Choice of m

The number of residual cross-correlation matrices to be computed, m, should be chosen to ensure that when the ARMA model (1) is written as either an infinite order autoregressive process, i.e.,
Wt-μ=j=1πj(Wt-j-μ)+εt  
or as an infinite order moving average process, i.e.,
Wt-μ=j= 1ψjεt-j+εt  
then the two sequences of k×k matrices {π1,π2,} and {ψ1,ψ2,} are such that πj and ψj are approximately zero for j>m. An overestimate of m is, therefore, preferable to an under-estimate of m. In many instances the choice m=10 will suffice. In practice, to be on the safe side, you should try setting m=20.

9.3 Checking a ‘White Noise’ Model

If you have fitted the ‘white noise’ model
Wt-μ=εt  
then g13dsf should be entered with p=1, q=0, and the first k2 elements of par and parhld set to zero and .TRUE. respectively.

9.4 Approximate Standard Errors

When ifail=5 or 6 all the standard errors in rcm are set to 1/n. This is the asymptotic standard error of r^ij(l) when all the autoregressive and moving average parameters are assumed to be known rather than estimated.

9.5 Alternative Tests

R^0 is useful in testing for instantaneous causality. If you wish to carry out a likelihood ratio test then the covariance matrix at lag zero (C^0) can be used. It can be recovered from R^0 by setting
C^0(i,j) =R^0(i,j)×R^0(i,i)×R^0(j,j), for ​ij =R^0(i,j)×R^0(i,j), for ​i=j  

10 Example

This example fits a bivariate AR(1) model to two series each of length 48. μ has been estimated but ϕ1(2,1) has been constrained to be zero. Ten residual cross-correlation matrices are to be computed.

10.1 Program Text

Program Text (g13dsfe.f90)

10.2 Program Data

Program Data (g13dsfe.d)

10.3 Program Results

Program Results (g13dsfe.r)