NAG FL Interface
g01daf (normal_​scores_​exact)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

g01daf computes a set of Normal scores, i.e., the expected values of an ordered set of independent observations from a Normal distribution with mean 0.0 and standard deviation 1.0.

2 Specification

Fortran Interface
Subroutine g01daf ( n, pp, etol, errest, work, iw, ifail)
Integer, Intent (In) :: n, iw
Integer, Intent (Inout) :: ifail
Real (Kind=nag_wp), Intent (In) :: etol
Real (Kind=nag_wp), Intent (Out) :: pp(n), errest, work(iw)
C Header Interface
#include <nag.h>
void  g01daf_ (const Integer *n, double pp[], const double *etol, double *errest, double work[], const Integer *iw, Integer *ifail)
The routine may be called by the names g01daf or nagf_stat_normal_scores_exact.

3 Description

If a sample of n observations from any distribution (which may be denoted by x1,x2,,xn), is sorted into ascending order, the rth smallest value in the sample is often referred to as the rth ‘order statistic’, sometimes denoted by x(r) (see Kendall and Stuart (1969)).
The order statistics, therefore, have the property
x(1)x(2)x(n).  
(If n=2r+1, xr+1 is the sample median.)
For samples originating from a known distribution, the distribution of each order statistic in a sample of given size may be determined. In particular, the expected values of the order statistics may be found by integration. If the sample arises from a Normal distribution, the expected values of the order statistics are referred to as the ‘Normal scores’. The Normal scores provide a set of reference values against which the order statistics of an actual data sample of the same size may be compared, to provide an indication of Normality for the sample. Normal scores have other applications; for instance, they are sometimes used as alternatives to ranks in nonparametric testing procedures.
g01daf computes the rth Normal score for a given sample size n as
E(x(r))=-xrdGr,  
where
dGr=Arr- 1 (1-Ar)n-r d Ar β (r,n-r+ 1) ,   Ar=12π -xre-t2/2 dt,   r= 1,2,,n,  
and β denotes the complete beta function.
The routine attempts to evaluate the scores so that the estimated error in each score is less than the value etol specified by you. All integrations are performed in parallel and arranged so as to give good speed and reasonable accuracy.

4 References

Kendall M G and Stuart A (1969) The Advanced Theory of Statistics (Volume 1) (3rd Edition) Griffin

5 Arguments

1: n Integer Input
On entry: n, the size of the set.
Constraint: n>0.
2: pp(n) Real (Kind=nag_wp) array Output
On exit: the Normal scores. pp(i) contains the value E(x(i)), for i=1,2,,n.
3: etol Real (Kind=nag_wp) Input
On entry: the maximum value for the estimated absolute error in the computed scores.
Constraint: etol>0.0.
4: errest Real (Kind=nag_wp) Output
On exit: a computed estimate of the maximum error in the computed scores (see Section 7).
5: work(iw) Real (Kind=nag_wp) array Workspace
6: iw Integer Input
On entry: the dimension of the array work as declared in the (sub)program from which g01daf is called.
Constraints:
  • if n is even, iw3×n/2;
  • otherwise iw3×(n-1)/2.
7: ifail Integer Input/Output
On entry: ifail must be set to 0, -1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of -1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value -1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value 0 is recommended. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6 Error Indicators and Warnings

If on entry ifail=0 or -1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
On entry, n=value.
Constraint: n>0.
ifail=2
On entry, etol=value.
Constraint: etol>0.0.
ifail=3
The routine was unable to estimate the scores with estimated error less than etol. The best result obtained is returned together with the associated value of errest.
ifail=4
On entry, iw is too small. Minimum size required: value.
ifail=-99
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.
ifail=-399
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.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

Errors are introduced by evaluation of the functions dGr and errors in the numerical integration process. Errors are also introduced by the approximation of the true infinite range of integration by a finite range [a,b] but a and b are chosen so that this effect is of lower order than that of the other two factors. In order to estimate the maximum error the functions dGr are also integrated over the range [a,b]. g01daf returns the estimated maximum error as
errest=maxr [max(|a|,|b|)×|abdGr-1.0|] .  

8 Parallelism and Performance

g01daf is not threaded in any implementation.

9 Further Comments

The time taken by g01daf depends on etol and n. For a given value of etol the timing varies approximately linearly with n.

10 Example

The program below generates the Normal scores for samples of size 5, 10, 15, and prints the scores and the computed error estimates.

10.1 Program Text

Program Text (g01dafe.f90)

10.2 Program Data

None.

10.3 Program Results

Program Results (g01dafe.r)
This shows a Q-Q plot for a randomly generated set of data. The normal scores have been calculated using g01daf and the sample quantiles obtained by sorting the observed data using m01caf. A reference line at y=x is also shown.
GnuplotProduced by GNUPLOT 4.6 patchlevel 3 −3 −2.5 −2 −1.5 −1 −0.5 0 0.5 1 1.5 2 2.5 −2.5 −2 −1.5 −1 −0.5 0 0.5 1 1.5 2 2.5 Sample Quantiles Normal Scores Example Program Q-Q Plot for a Random Set of Data Using Exact Normal Scores gnuplot_plot_1 gnuplot_plot_2