g13ad calculates preliminary estimates of the parameters of an autoregressive integrated moving average (ARIMA) model from the autocorrelation function of the appropriately differenced times series.
Syntax
C# |
---|
public static void g13ad( int[] mr, double[] r, int nk, double xv, double[] par, out double rv, int[] isf, out int ifail ) |
Visual Basic |
---|
Public Shared Sub g13ad ( _ mr As Integer(), _ r As Double(), _ nk As Integer, _ xv As Double, _ par As Double(), _ <OutAttribute> ByRef rv As Double, _ isf As Integer(), _ <OutAttribute> ByRef ifail As Integer _ ) |
Visual C++ |
---|
public: static void g13ad( array<int>^ mr, array<double>^ r, int nk, double xv, array<double>^ par, [OutAttribute] double% rv, array<int>^ isf, [OutAttribute] int% ifail ) |
F# |
---|
static member g13ad : mr : int[] * r : float[] * nk : int * xv : float * par : float[] * rv : float byref * isf : int[] * ifail : int byref -> unit |
Parameters
- mr
- Type: array<System..::..Int32>[]()[][]An array of size []On entry: the orders vector of the ARIMA model whose parameters are to be estimated. , , and refer respectively to the number of autoregressive , moving average , seasonal autoregressive and seasonal moving average parameters. , and refer respectively to the order of non-seasonal differencing, the order of seasonal differencing and the seasonal period.Constraints:
- ;
- ;
- ;
- if , ;
- if , .
- r
- Type: array<System..::..Double>[]()[][]An array of size [nk]On entry: the autocorrelations (starting at lag ), which must have been calculated after the time series has been appropriately differenced.Constraint: , for .
- nk
- Type: System..::..Int32On entry: the maximum lag of the autocorrelations in array r.Constraint: .
- xv
- Type: System..::..DoubleOn entry: the series sample variance, calculated after appropriate differencing has been applied to the series.Constraint: .
- par
- Type: array<System..::..Double>[]()[][]An array of size [dim1]Note: dim1 must satisfy the constraint:On exit: the first _npar elements of par contain the preliminary estimates of the ARIMA model parameters, in standard order.
- rv
- Type: System..::..Double%On exit: an estimate of the residual variance of the preliminarily estimated model.
- isf
- Type: array<System..::..Int32>[]()[][]An array of size []On exit: contains success/failure indicators, one for each of the four types of parameter (autoregressive, moving average, seasonal autoregressive, seasonal moving average).The indicator has the interpretation:
No parameter of this type is in the model. Parameters of this type appear in the model and satisfactory preliminary estimates of this type were obtained. Parameters of this type appear in the model but satisfactory preliminary estimates of this type were not obtainable. The estimates of this type of parameter were set to in array par.
- ifail
- Type: System..::..Int32%On exit: unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).
Description
Preliminary estimates of the non-seasonal autoregressive parameters and the non-seasonal moving average parameters may be obtained from the sample autocorrelations relating to lags to , i.e., , of the differenced , where is assumed to follow a (possibly) seasonal ARIMA model (see [Description] in g13ae for the specification of an ARIMA model).
Taking and , the , for are the solutions to the equations
The , for , are obtained from the solutions to the equations
(Cramer Wold-factorization), by setting
where are the ‘covariances’ modified in a two stage process by the autoregressive parameters.
Stage 1:
Stage 2:
The seasonal autoregressive parameters and the seasonal moving average parameters are estimated in the same way as the non-seasonal parameters, but each is replaced in the calculation by , where is the seasonal period.
An estimate of the residual variance is obtained by successively reducing the sample variance, first for non-seasonal, and then for seasonal, parameter estimates. If moving average parameters are estimated, the variance is reduced by a multiplying factor of , but otherwise by .
References
Box G E P and Jenkins G M (1976) Time Series Analysis: Forecasting and Control (Revised Edition) Holden–Day
Error Indicators and Warnings
Errors or warnings detected by the method:
Some error messages may refer to parameters that are dropped from this interface
(NPAR) In these
cases, an error in another parameter has usually caused an incorrect value to be inferred.
- On entry, the orders vector mr is invalid. One of the constraints in [Parameters] has been violated.
- On entry, . There are not enough autocorrelations to enable the required model to be estimated.
On entry, at least one element of r lies outside the range .
On entry, .
On entry, the workspace array wa is too small. See [Parameters] for the minimum size formula.
- Satisfactory parameter estimates could not be obtained for all parameter types in the model. Inspect array isf for indicators of the parameter type(s) which could not be estimated.
Accuracy
The performance of the algorithm is conditioned by the roots of the autoregressive and moving average operators. If these are not close to unity in modulus, the errors, , should satisfy where is machine precision.
Parallelism and Performance
None.
Further Comments
The time taken by g13ad is approximately proportional to
Example
This example reads the sample autocorrelations to lag and the sample variance of the lagged and doubly differenced series of airline passenger totals (Box and Jenkins example series G (see Box and Jenkins (1976))). Preliminary estimates of the parameters of the model are obtained by a call to g13ad.
Example program (C#): g13ade.cs