NAG Library Routine Document
g13awf
(uni_dickey_fuller_unit)
1
Purpose
g13awf returns the (augmented) Dickey–Fuller unit root test.
2
Specification
Fortran Interface
Real (Kind=nag_wp) | :: | g13awf | Integer, Intent (In) | :: |
type,
p,
n | Integer, Intent (Inout) | :: |
ifail | Real (Kind=nag_wp), Intent (In) | :: |
y(n) |
|
C Header Interface
#include nagmk26.h
double |
g13awf_ (
const Integer *typ,
const Integer *p,
const Integer *n,
const double y[],
Integer *ifail) |
|
3
Description
If the root of the characteristic equation for a time series is one then that series is said to have a unit root. Such series are nonstationary. g13awf returns one of three types of (augmented) Dickey–Fuller test statistic: , or , used to test for a unit root, a unit root with drift or a unit root with drift and a deterministic time trend, respectively.
To test whether a time series,
, for
, has a unit root, the regression model
is fitted and the test statistic
constructed as
where
is the difference operator, with
, and where
and
are the least squares estimate and associated standard error for
respectively.
To test for a unit root with drift the regression model
is fit and the test statistic
constructed as
To test for a unit root with drift and deterministic time trend the regression model
is fit and the test statistic
constructed as
The distributions of the three test statistics;
,
and
, are nonstandard. An associated probability can be obtained from
g01ewf.
4
References
Dickey A D (1976) Estimation and hypothesis testing in nonstationary time series PhD Thesis Iowa State University, Ames, Iowa
Dickey A D and Fuller W A (1979) Distribution of the estimators for autoregressive time series with a unit root J. Am. Stat. Assoc. 74 366 427–431
5
Arguments
- 1: – IntegerInput
-
On entry: the type of unit test for which the probability is required.
- A unit root test will be performed and returned.
- A unit root test with drift will be performed and returned.
- A unit root test with drift and deterministic time trend will be performed and returned.
Constraint:
, or .
- 2: – IntegerInput
-
On entry: , the degree of the autoregressive (AR) component of the Dickey–Fuller test statistic. When the test is usually referred to as the augmented Dickey–Fuller test.
Constraint:
.
- 3: – IntegerInput
-
On entry: , the length of the time series.
Constraints:
- if , ;
- if , ;
- if , .
- 4: – Real (Kind=nag_wp) arrayInput
-
On entry: , the time series.
- 5: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this argument, the recommended value is
.
When the value is used it is essential to test the value of ifail on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6
Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
x04aaf).
Errors or warnings detected by the routine:
-
On entry, .
Constraint: , or .
-
On entry, .
Constraint: .
-
On entry, .
Constraint: .
-
On entry, the design matrix used in the estimation of is not of full rank, this is usually due to all elements of the series being virtually identical. The returned statistic is therefore not unique and likely to be meaningless.
-
, therefore depending on the sign of , a large positive or negative value has been returned.
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
7
Accuracy
None.
8
Parallelism and Performance
g13awf is not threaded in any implementation.
None.
10
Example
In this example a Dickey–Fuller unit root test is applied to a time series related to the rate of the earth's rotation about its polar axis.
10.1
Program Text
Program Text (g13awfe.f90)
10.2
Program Data
Program Data (g13awfe.d)
10.3
Program Results
Program Results (g13awfe.r)