NAG Library Routine Document
g01dcf
(normal_scores_var)
1
Purpose
g01dcf computes an approximation to the variance-covariance matrix of an ordered set of independent observations from a Normal distribution with mean and standard deviation .
2
Specification
Fortran Interface
Integer, Intent (In) | :: |
n | Integer, Intent (Inout) | :: |
ifail | Real (Kind=nag_wp), Intent (In) | :: |
exp1,
exp2,
sumssq | Real (Kind=nag_wp), Intent (Out) | :: |
vec(n*(n+1)/2) |
|
C Header Interface
#include nagmk26.h
void |
g01dcf_ (
const Integer *n,
const double *exp1,
const double *exp2,
const double *sumssq,
double vec[],
Integer *ifail) |
|
3
Description
g01dcf is an adaptation of the Applied Statistics Algorithm AS 128, see
Davis and Stephens (1978). An approximation to the variance-covariance matrix,
, using a Taylor series expansion of the Normal distribution function is discussed in
David and Johnson (1954).
However, convergence is slow for extreme variances and covariances. The present routine uses the David–Johnson approximation to provide an initial approximation and improves upon it by use of the following identities for the matrix.
For a sample of size
, let
be the expected value of the
th largest order statistic, then:
(a) |
for any , |
(b) |
|
(c) |
the trace of is |
(d) |
where , and . Note that only the upper triangle of the matrix is calculated and returned column-wise in vector form. |
4
References
David F N and Johnson N L (1954) Statistical treatment of censored data, Part 1. Fundamental formulae Biometrika 41 228–240
Davis C S and Stephens M A (1978) Algorithm AS 128: approximating the covariance matrix of Normal order statistics Appl. Statist. 27 206–212
5
Arguments
- 1: – IntegerInput
-
On entry: , the sample size.
Constraint:
.
- 2: – Real (Kind=nag_wp)Input
-
On entry: the expected value of the largest Normal order statistic, , from a sample of size .
- 3: – Real (Kind=nag_wp)Input
-
On entry: the expected value of the second largest Normal order statistic, , from a sample of size .
- 4: – Real (Kind=nag_wp)Input
-
On entry: the sum of squares of the expected values of the Normal order statistics from a sample of size .
- 5: – Real (Kind=nag_wp) arrayOutput
-
On exit: the upper triangle of the by variance-covariance matrix packed by column. Thus element is stored in , for .
- 6: – 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: .
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
For , where comparison with the exact values can be made, the maximum error is less than .
8
Parallelism and Performance
g01dcf is not threaded in any implementation.
The time taken by g01dcf is approximately proportional to .
The arguments
(
),
(
) and
(
) may be found from the expected values of the Normal order statistics obtained from
g01daf
(exact) or
g01dbf (approximate).
10
Example
A program to compute the variance-covariance matrix for a sample of size
.
g01daf is called to provide values for
exp1,
exp2 and
sumssq.
10.1
Program Text
Program Text (g01dcfe.f90)
10.2
Program Data
None.
10.3
Program Results
Program Results (g01dcfe.r)