g02hff calculates an estimate of the asymptotic variance-covariance matrix for the bounded influence regression estimates (M-estimates). It is intended for use with g02hdf.
The routine may be called by the names g02hff or nagf_correg_robustm_user_varmat.
3Description
For a description of bounded influence regression see g02hdf. Let be the regression parameters and let be the asymptotic variance-covariance matrix of . Then for Huber type regression
g02hff is based on routines in ROBETH; see Marazzi (1987).
4References
Hampel F R, Ronchetti E M, Rousseeuw P J and Stahel W A (1986) Robust Statistics. The Approach Based on Influence Functions Wiley
Huber P J (1981) Robust Statistics Wiley
Marazzi A (1987) Subroutines for robust and bounded influence regression in ROBETH Cah. Rech. Doc. IUMSP, No. 3 ROB 2 Institut Universitaire de Médecine Sociale et Préventive, Lausanne
5Arguments
1: – real (Kind=nag_wp) Function, supplied by the user.External Procedure
psi must return the value of the function for a given value of its argument.
On entry: the argument for which psi must be evaluated.
psi must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which g02hff is called. Arguments denoted as Input must not be changed by this procedure.
Note:psi should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by g02hff. If your code inadvertently does return any NaNs or infinities, g02hff is likely to produce unexpected results.
2: – real (Kind=nag_wp) Function, supplied by the user.External Procedure
psp must return the value of for a given value of its argument.
On entry: the argument for which psp must be evaluated.
psp must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which g02hff is called. Arguments denoted as Input must not be changed by this procedure.
Note:psp should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by g02hff. If your code inadvertently does return any NaNs or infinities, g02hff is likely to produce unexpected results.
3: – IntegerInput
On entry: the type of regression for which the asymptotic variance-covariance matrix is to be calculated.
Mallows type regression.
Huber type regression.
Schweppe type regression.
4: – IntegerInput
On entry: if , indc must specify the approximation to be used.
On exit: the estimate of the variance-covariance matrix.
13: – IntegerInput
On entry: the first dimension of the array c as declared in the (sub)program from which g02hff is called.
Constraint:
.
14: – Real (Kind=nag_wp) arrayOutput
On exit: if ,
, for , will contain the diagonal elements of the matrix and
, for , will contain the diagonal elements of matrix .
The rest of the array is used as workspace.
15: – IntegerInput/Output
On entry: ifail must be set to , or to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of means that an error message is printed while a value of means that it is not.
If halting is not appropriate, the value or is recommended. If message printing is undesirable, then the value is recommended. Otherwise, the value is recommended. When the value or 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).
6Error 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: .
On entry, and .
Constraint: .
On entry, .
Constraint: .
On entry, and .
Constraint: .
On entry, and .
Constraint: .
On entry, .
Constraint: .
matrix is singular or almost singular.
matrix not positive definite.
Either the value of ,
or ,
or .
In this situation g02hff returns as .
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.
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.
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.
7Accuracy
In general, the accuracy of the variance-covariance matrix will depend primarily on the accuracy of the results from g02hdf.
8Parallelism and Performance
g02hff is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
g02hff 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.
9Further Comments
g02hff is only for situations in which has full column rank.
Care has to be taken in the choice of the function since if for too wide a range then either the value of will not exist or too many values of will be zero and it will not be possible to calculate .
10Example
The asymptotic variance-covariance matrix is calculated for a Schweppe type regression. The values of , and the residuals and weights are read in. The averaging over residuals approximation is used.