PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_correg_linregm_stat_durbwat (g02fc)
Purpose
nag_correg_linregm_stat_durbwat (g02fc) calculates the Durbin–Watson statistic, for a set of residuals, and the upper and lower bounds for its significance.
Syntax
Description
For the general linear regression model
where |
is a vector of length of the dependent variable,
is a by matrix of the independent variables,
is a vector of length of unknown arguments, |
and |
is a vector of length of unknown random errors. |
The residuals are given by
and the fitted values,
, can be written as
for a
by
matrix
. Note that when a mean term is included in the model the sum of the residuals is zero. If the observations have been taken serially, that is
can be considered as a time series, the Durbin–Watson test can be used to test for serial correlation in the
, see
Durbin and Watson (1950),
Durbin and Watson (1951) and
Durbin and Watson (1971).
The Durbin–Watson statistic is
Positive serial correlation in the
will lead to a small value of
while for independent errors
will be close to
. Durbin and Watson show that the exact distribution of
depends on the eigenvalues of the matrix
where the matrix
is such that
can be written as
and the eigenvalues of the matrix
are
, for
.
However bounds on the distribution can be obtained, the lower bound being
and the upper bound being
where the
are independent standard Normal variables. The lower tail probabilities associated with these bounds,
and
, are computed by
nag_stat_prob_durbin_watson (g01ep). The interpretation of the bounds is that, for a test of size (significance)
, if
the test is significant, if
the test is not significant, while if
and
no conclusion can be reached.
The above probabilities are for the usual test of positive auto-correlation. If the alternative of negative auto-correlation is required, then a call to
nag_stat_prob_durbin_watson (g01ep) should be made with the argument
d taking the value of
; see
Newbold (1988).
References
Durbin J and Watson G S (1950) Testing for serial correlation in least squares regression. I Biometrika 37 409–428
Durbin J and Watson G S (1951) Testing for serial correlation in least squares regression. II Biometrika 38 159–178
Durbin J and Watson G S (1971) Testing for serial correlation in least squares regression. III Biometrika 58 1–19
Granger C W J and Newbold P (1986) Forecasting Economic Time Series (2nd Edition) Academic Press
Newbold P (1988) Statistics for Business and Economics Prentice–Hall
Parameters
Compulsory Input Parameters
- 1:
– int64int32nag_int scalar
-
, the number of independent variables in the regression model, including the mean.
Constraint:
.
- 2:
– double array
-
The residuals, .
Constraint:
the mean of the residuals , where .
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the dimension of the array
res.
, the number of residuals.
Constraint:
.
Output Parameters
- 1:
– double scalar
-
The Durbin–Watson statistic, .
- 2:
– double scalar
-
Lower bound for the significance of the Durbin–Watson statistic, .
- 3:
– double scalar
-
Upper bound for the significance of the Durbin–Watson statistic, .
- 4:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Errors or warnings detected by the function:
-
-
-
-
On entry, | the mean of the residuals was , where . |
-
-
On entry, | all residuals are identical. |
-
An unexpected error has been triggered by this routine. Please
contact
NAG.
-
Your licence key may have expired or may not have been installed correctly.
-
Dynamic memory allocation failed.
Accuracy
The probabilities are computed to an accuracy of at least decimal places.
Further Comments
If the exact probabilities are required, then the first
eigenvalues of
can be computed and
nag_stat_prob_chisq_lincomb (g01jd) used to compute the required probabilities with the argument
c set to
and the argument
d set to the Durbin–Watson statistic
.
Example
A set of residuals are read in and the Durbin–Watson statistic along with the probability bounds are computed and printed.
Open in the MATLAB editor:
g02fc_example
function g02fc_example
fprintf('g02fc example results\n\n');
res = [ 3.735719 0.912755 0.683626 0.416693 1.990200 ...
-0.444816 -1.283088 -3.666035 -0.426357 -1.918697];
ip = int64(2);
[d, pdl, pdu, ifail] = g02fc(ip, res);
fprintf(' Durbin-Watson statistic %10.4f\n\n', d);
fprintf(' Lower and upper bound %10.4f%10.4f\n', pdl, pdu);
g02fc example results
Durbin-Watson statistic 0.9238
Lower and upper bound 0.0610 0.0060
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015