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

NAG Library Routine Document

G13DDF

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

G13DDF fits a vector autoregressive moving average (VARMA) model to an observed vector of time series using the method of Maximum Likelihood (ML). Standard errors of parameter estimates are computed along with their appropriate correlation matrix. The routine also calculates estimates of the residual series.

2  Specification

SUBROUTINE G13DDF ( K, N, IP, IQ, MEAN, PAR, NPAR, QQ, KMAX, W, PARHLD, EXACT, IPRINT, CGETOL, MAXCAL, ISHOW, NITER, RLOGL, V, G, CM, LDCM, IFAIL)
INTEGER  K, N, IP, IQ, NPAR, KMAX, IPRINT, MAXCAL, ISHOW, NITER, LDCM, IFAIL
REAL (KIND=nag_wp)  PAR(NPAR), QQ(KMAX,K), W(KMAX,N), CGETOL, RLOGL, V(KMAX,N), G(NPAR), CM(LDCM,NPAR)
LOGICAL  MEAN, PARHLD(NPAR), EXACT

3  Description

Let Wt = w1t,w2t,,wktT , 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-μ= ϕ1Wt-1-μ+ϕ2Wt-2-μ++ϕpWt-p-μ +εt-θ1εt-1-θ2εt-2--θqεt-q (1)
where εt = ε1t,ε2t,,εktT , 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 by 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 by k) ϕ-matrices, the q (k by 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 by k identity matrix.
The ARMA model (1) is said to be stationary if the eigenvalues of Aϕ lie inside the unit circle. Similarly, the ARMA model (1) is said to be invertible if the eigenvalues of Bθ lie inside the unit circle.
The method of computing the exact likelihood function (using a Kalman filter algorithm) is discussed in Shea (1987). A quasi-Newton algorithm (see Gill and Murray (1972)) is then used to search for the maximum of the log-likelihood function. Stationarity and invertibility are enforced on the model using the reparameterisation discussed in Ansley and Kohn (1986). Conditional on the maximum likelihood estimates being equal to their true values the estimates of the residual series are uncorrelated with zero mean and constant variance Σ.
You have the option of setting a parameter (EXACT to .FALSE.) so that G13DDF calculates conditional maximum likelihood estimates (conditional on W0=W-1==W1-p=ε0=ε-1== ε1-q=0). This may be useful if the exact maximum likelihood estimates are close to the boundary of the invertibility region.
You also have the option (see Section 5) of requesting G13DDF to constrain elements of the ϕ and θ matrices and μ vector to have pre-specified values.

4  References

Ansley C F and Kohn R (1986) A note on reparameterising a vector autoregressive moving average model to enforce stationarity J. Statist. Comput. Simulation 24 99–106
Gill P E and Murray W (1972) Quasi-Newton methods for unconstrained optimization J. Inst. Math. Appl. 9 91–108
Shea B L (1987) Estimation of multivariate time series J. Time Ser. Anal. 8 95–110

5  Parameters

1:     K – INTEGERInput
On entry: k, the number of observed time series.
Constraint: K1.
2:     N – INTEGERInput
On entry: n, the number of observations in each time series.
3:     IP – INTEGERInput
On entry: p, the number of AR parameter matrices.
Constraint: IP0.
4:     IQ – INTEGERInput
On entry: q, the number of MA parameter matrices.
Constraint: IQ0.
IP=IQ=0 is not permitted.
5:     MEAN – LOGICALInput
On entry: MEAN=.TRUE., if components of μ have been estimated and MEAN=.FALSE., if all elements of μ are to be taken as zero.
Constraint: MEAN=.TRUE. or .FALSE..
6:     PARNPAR – REAL (KIND=nag_wp) arrayInput/Output
On entry: initial parameter estimates read in row by row in the order ϕ1,ϕ2,,ϕp, θ1,θ2,,θq,μ.
Thus,
  • if IP>0, PARl-1×k×k+i-1×k+j must be set equal to an initial estimate of the i,jth element of ϕl, for l=1,2,,p, i=1,2,,k and j=1,2,,k;
  • if IQ>0, PARp×k×k+l-1×k×k+i-1×k+j must be set equal to an initial estimate of the i,jth element of θl, l=1,2,,q and i,j=1,2,,k;
  • if MEAN=.TRUE., PARp+q×k×k+i should be set equal to an initial estimate of the ith component of μ (μi). (If you set PARp+q×k×k+i to 0.0 then G13DDF will calculate the mean of the ith series and use this as an initial estimate of μi.)
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.
If in doubt set all elements of PAR to 0.0.
On exit: if IFAIL=0 or IFAIL4 then all the elements of PAR will be overwritten by the latest estimates of the corresponding ARMA parameters.
7:     NPAR – INTEGERInput
On entry: the dimension of the arrays PAR, PARHLD and G and the second dimension of the array CM as declared in the (sub)program from which G13DDF is called.NPAR is the number of initial parameter estimates.
Constraints:
  • if MEAN=.FALSE., NPAR must be set equal to p+q×k×k;
  • if MEAN=.TRUE., NPAR must be set equal to p+q×k×k+k.
The total number of observations n×k must exceed the total number of parameters in the model (NPAR+kk+1/2).
8:     QQKMAXK – REAL (KIND=nag_wp) arrayInput/Output
On entry: QQij must be set equal to an initial estimate of the i,jth element of Σ. The lower triangle only is needed. QQ must be positive definite. It is strongly recommended that on entry the elements of QQ are of the same order of magnitude as at the solution point. If you set QQij=0.0, for i=1,2,,k and j=1,2,,i, then G13DDF will calculate the covariance matrix between the k time series and use this as an initial estimate of Σ.
On exit: if IFAIL=0 or IFAIL4 then QQij will contain the latest estimate of the i,jth element of Σ. The lower triangle only is returned.
9:     KMAX – INTEGERInput
On entry: the first dimension of the arrays QQ, W and V as declared in the (sub)program from which G13DDF is called.
Constraint: KMAXK.
10:   WKMAXN – REAL (KIND=nag_wp) arrayInput
On entry: Wit must be set equal to the ith component of Wt, for i=1,2,,k and t=1,2,,n.
11:   PARHLDNPAR – LOGICAL arrayInput
On entry: PARHLDi must be set to .TRUE. if PARi is to be held constant at its input value and .FALSE. if PARi is a free parameter, for i=1,2,,NPAR.
If in doubt try setting all elements of PARHLD to .FALSE..
12:   EXACT – LOGICALInput
On entry: must be set equal to .TRUE. if you wish G13DDF to compute exact maximum likelihood estimates. EXACT must be set equal to .FALSE. if only conditional likelihood estimates are required.
13:   IPRINT – INTEGERInput
On entry: the frequency with which the automatic monitoring routine is to be called.
IPRINT>0
The ML search procedure is monitored once every IPRINT iterations and just before exit from the search routine.
IPRINT=0
The search routine is monitored once at the final point.
IPRINT<0
The search routine is not monitored at all.
14:   CGETOL – REAL (KIND=nag_wp)Input
On entry: the accuracy to which the solution in PAR and QQ is required.
If CGETOL is set to 10-l and on exit IFAIL=0 or IFAIL6, then all the elements in PAR and QQ should be accurate to approximately l decimal places. For most practical purposes the value 10-4 should suffice. You should be wary of setting CGETOL too small since the convergence criteria may then have become too strict for the machine to handle.
If CGETOL has been set to a value which is less than the machine precision, ε, then G13DDF will use the value 10.0×ε instead.
15:   MAXCAL – INTEGERInput
On entry: the maximum number of likelihood evaluations to be permitted by the search procedure.
Suggested value: MAXCAL=40×NPAR×NPAR+5.
Constraint: MAXCAL1.
16:   ISHOW – INTEGERInput
On entry: specifies which of the following two quantities are to be printed.
(i) table of maximum likelihood estimates and their standard errors (as returned in the output arrays PAR, QQ and CM);
(ii) table of residual series (as returned in the output array V).
ISHOW=0
None of the above are printed.
ISHOW=1
(i) only is printed.
ISHOW=2
(i) and (ii) are printed.
Constraint: 0ISHOW2.
17:   NITER – INTEGEROutput
On exit: if IFAIL=0 or IFAIL4 then NITER contains the number of iterations performed by the search routine.
18:   RLOGL – REAL (KIND=nag_wp)Output
On exit: if IFAIL=0 or IFAIL4 then RLOGL contains the value of the log-likelihood function corresponding to the final point held in PAR and QQ.
19:   VKMAXN – REAL (KIND=nag_wp) arrayOutput
On exit: if IFAIL=0 or IFAIL4 then Vit will contain an estimate of the ith component of εt, for i=1,2,,k and t=1,2,,n, corresponding to the final point held in PAR and QQ.
20:   GNPAR – REAL (KIND=nag_wp) arrayOutput
On exit: if IFAIL=0 or IFAIL4 then Gi will contain the estimated first derivative of the log-likelihood function with respect to the ith element in the array PAR. If the gradient cannot be computed then all the elements of G are returned as zero.
21:   CMLDCMNPAR – REAL (KIND=nag_wp) arrayOutput
On exit: if IFAIL=0 or IFAIL4 then CMij will contain an estimate of the correlation coefficient between the ith and jth elements in the PAR array for 1iNPAR, 1jNPAR. If i=j, then CMij will contain the estimated standard error of PARi. If the lth component of PAR has been held constant, i.e., PARHLDl was set to .TRUE., then the lth row and column of CM will be set to zero. If the second derivative matrix cannot be computed then all the elements of CM are returned as zero.
22:   LDCM – INTEGERInput
On entry: the first dimension of the array CM as declared in the (sub)program from which G13DDF is called.
Constraint: LDCMNPAR.
23:   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, because for this routine the values of the output parameters may be useful even if IFAIL0 on exit, the recommended value is -1. 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).
Note: G13DDF may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the routine:
IFAIL=1
On entry, IP=value.
Constraint: IP0.
On entry, IP=0 and IQ=0.
On entry, IQ=value.
Constraint: IQ0.
On entry, ISHOW=value.
Constraint: 0ISHOW2.
On entry, K=value.
Constraint: K1.
On entry, KMAX=value and K=value.
Constraint: KMAXK.
On entry, LDCM=value and NPAR=value.
Constraint: LDCMNPAR.
On entry, MAXCAL=value.
Constraint: MAXCAL1.
On entry, N=value, K=value and NPAR=value.
Constraint: N×K>NPAR+K×K+1/2.
On entry, NPAR=value.
Constraint: NPAR=value.
On entry, NPAR=value.
Constraint: NPAR0.
IFAIL=2
The initial AR parameter estimates are outside the stationarity region.
To proceed, you must try a different starting point.
The initial estimate of Σ is not positive definite. To proceed, you must try a different starting point.
The initial MA parameter estimates are outside the invertibility region. To proceed, you must try a different starting point.
The starting point is too close to the boundary of the admissibility region.
IFAIL=3
The routine cannot compute a sufficiently accurate estimate of the gradient vector at the user-supplied starting point. This usually occurs if either the initial parameter estimates are very close to the ML parameter estimates, or you have supplied a very poor estimate of Σ, or the starting point is very close to the boundary of the stationarity or invertibility region. To proceed, you must try a different starting point.
IFAIL=4
There have been MAXCAL log-likelihood evaluations made in the routine.
If steady increases in the log-likelihood function were monitored up to the point where this exit occurred, then the exit probably simply occurred because MAXCAL was set too small, so the calculations should be restarted from the final point held in PAR and QQ. This type of exit may also indicate that there is no maximum to the likelihood surface. Output quantities were computed at the final point held in PAR and QQ, except that if G or CM could not be computed, in which case they are set to zero.
IFAIL=5
The conditions for a solution have not all been met, but a point at which the log-likelihood took a larger value could not be found.
Provided that the estimated first derivatives are sufficiently small, and that the estimated condition number of the second derivative (Hessian) matrix, as printed when IPRINT0, is not too large, this error exit may simply mean that, although it has not been possible to satisfy the specified requirements, the algorithm has in fact found the solution as far as the accuracy of the machine permits.
Such a condition can arise, for instance, if CGETOL has been set so small that rounding error in evaluating the likelihood function makes attainment of the convergence conditions impossible.
If the estimated condition number at the final point is large, it could be that the final point is a solution but that the smallest eigenvalue of the Hessian matrix is so close to zero at the solution that it is not possible to recognize it as a solution. Output quantities were computed at the final point held in PAR and QQ, except that if G or CM could not be computed, in which case they are set to zero.
IFAIL=6
The ML solution is so close to the boundary of either the stationarity region or the invertibility region that G13DDF cannot evaluate the Hessian matrix. The elements of CM are set to zero, as are the elements of G. All other output quantities are correct.
IFAIL=7
An estimate of the second derivative matrix and the gradient vector at the solution point was computed. Either the Hessian matrix was found to be too ill-conditioned to be evaluated accurately or the gradient vector could not be computed to an acceptable degree of accuracy. The elements of CM are set to zero, as are the elements of G. All other output quantities are correct.
IFAIL=8
The second-derivative matrix at the solution point is not positive definite. The elements of CM are set to zero. All other output quantities are correct.
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

On exit from G13DDF, if IFAIL=0 or IFAIL6 and CGETOL has been set to 10-l, then all the parameters should be accurate to approximately l decimal places. If CGETOL was set equal to a value less than the machine precision, ε, then all the parameters should be accurate to approximately 10.0×ε.
If IFAIL=4 on exit (i.e., MAXCAL likelihood evaluations have been made but the convergence conditions of the search routine have not been satisfied), then the elements in PAR and QQ may still be good approximations to the ML estimates. Inspection of the elements of G may help you determine whether this is likely.

8  Parallelism and Performance

G13DDF is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
G13DDF 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  Memory Usage

Let r = maxIP,IQ  and s = NPAR+K× K+1 / 2 . Local workspace arrays of fixed lengths are allocated internally by G13DDF. The total size of these arrays amounts to s+K×r+52  integer elements and 2 × s2 +s× s-1 /2+15× s+ K2 × 2×IP+IQ+ r+3 2 +K× 2× r2 +2× r+3× N+4 +10  real elements.

9.2  Timing

The number of iterations required depends upon the number of parameters in the model and the distance of the user-supplied starting point from the solution.

9.3  Constraining for Stationarity and Invertibility

If the solution lies on the boundary of the admissibility region (stationarity and invertibility region) then G13DDF may get into difficulty and exit with IFAIL=5. If this exit occurs you are advised to either try a different starting point or a different setting for EXACT. If this still continues to occur then you are urged to try fitting a more parsimonious model.

9.4  Over-parameterisation

You are advised to try and avoid fitting models with an excessive number of parameters since over-parameterisation can cause the maximization problem to become ill-conditioned.

9.5  Standardizing the Residual Series

The standardized estimates of the residual series εt (denoted by e^t) can easily be calculated by forming the Cholesky decomposition of Σ, e.g., GGT and setting e^t=G-1ε^t. F07FDF (DPOTRF) may be used to calculate the array G. The components of e^t which are now uncorrelated at all lags can sometimes be more easily interpreted.

9.6  Assessing the Fit of the Model

If your time series model provides a good fit to the data then the residual series should be approximately white noise, i.e., exhibit no serial cross-correlation. An examination of the residual cross-correlation matrices should confirm whether this is likely to be so. You are advised to call G13DSF to provide information for diagnostic checking. G13DSF returns the residual cross-correlation matrices along with their asymptotic standard errors. G13DSF also computes a portmanteau statistic and its asymptotic significance level for testing model adequacy. If IFAIL=0 or 5IFAIL8 on exit from G13DDF then the quantities output K, N, V, KMAX, IP, IQ, PAR, PARHLD, and QQ will be suitable for input to G13DSF.

10  Example

This example shows how to fit a bivariate AR(1) model to two series each of length 48. μ will be estimated and ϕ12,1 will be constrained to be zero.

10.1  Program Text

Program Text (g13ddfe.f90)

10.2  Program Data

Program Data (g13ddfe.d)

10.3  Program Results

Program Results (g13ddfe.r)


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

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