g01da 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.

Syntax

C#
public static void g01da(
	int n,
	double[] pp,
	double etol,
	out double errest,
	out int ifail
)
Visual Basic
Public Shared Sub g01da ( _
	n As Integer, _
	pp As Double(), _
	etol As Double, _
	<OutAttribute> ByRef errest As Double, _
	<OutAttribute> ByRef ifail As Integer _
)
Visual C++
public:
static void g01da(
	int n, 
	array<double>^ pp, 
	double etol, 
	[OutAttribute] double% errest, 
	[OutAttribute] int% ifail
)
F#
static member g01da : 
        n : int * 
        pp : float[] * 
        etol : float * 
        errest : float byref * 
        ifail : int byref -> unit 

Parameters

n
Type: System..::..Int32
On entry: n, the size of the set.
Constraint: n>0.
pp
Type: array<System..::..Double>[]()[][]
An array of size [n]
On exit: the Normal scores. pp[i-1] contains the value Exi, for i=1,2,,n.
etol
Type: System..::..Double
On entry: the maximum value for the estimated absolute error in the computed scores.
Constraint: etol>0.0.
errest
Type: System..::..Double%
On exit: a computed estimate of the maximum error in the computed scores (see [Accuracy]).
ifail
Type: System..::..Int32%
On exit: ifail=0 unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).

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 xr (see Kendall and Stuart (1969)).
The order statistics therefore have the property
x1x2xn.
(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 (see (G01AHF not in this release)). Normal scores have other applications; for instance, they are sometimes used as alternatives to ranks in nonparametric testing procedures.
g01da computes the rth Normal score for a given sample size n as
Exr=-xrdGr,
where
dGr=Arr-11-Arn-rdArβr,n-r+1,  Ar=12π-xre-t2/2dt,  r=1,2,,n,
and β denotes the complete beta function.
The method 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.

References

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

Error Indicators and Warnings

Errors or warnings detected by the method:
ifail=1
On entry,n<1.
ifail=2
On entry,etol0.0.
ifail=3
The method 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,if n is even, iw<3×n/2;
orif n is odd, iw<3×n-1/2.
ifail=-9000
An error occured, see message report.
ifail=-8000
Negative dimension for array value
ifail=-6000
Invalid Parameters value

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. g01da returns the estimated maximum error as
errest=maxrmaxa,b×abdGr-1.0.

Parallelism and Performance

None.

Further Comments

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

Example

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

Example program (C#): g01dae.cs

Example program data: g01dae.d

Example program results: g01dae.r

See Also