G08CLF (PDF version)
G08 Chapter Contents
G08 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

G08CLF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

 Contents

    1  Purpose
    7  Accuracy

1  Purpose

G08CLF calculates the Anderson–Darling goodness-of-fit test statistic and its probability for the case of an unspecified exponential distribution.

2  Specification

SUBROUTINE G08CLF ( N, ISSORT, Y, YBAR, A2, AA2, P, IFAIL)
INTEGER  N, IFAIL
REAL (KIND=nag_wp)  Y(N), YBAR, A2, AA2, P
LOGICAL  ISSORT

3  Description

Calculates the Anderson–Darling test statistic A2 (see G08CHF) and its upper tail probability for the small sample correction:
Adjusted ​ A2 = A2 1+0.6/n ,  
for n observations.

4  References

Anderson T W and Darling D A (1952) Asymptotic theory of certain ‘goodness-of-fit’ criteria based on stochastic processes Annals of Mathematical Statistics 23 193–212
Stephens M A and D'Agostino R B (1986) Goodness-of-Fit Techniques Marcel Dekker, New York

5  Parameters

1:     N – INTEGERInput
On entry: n, the number of observations.
Constraint: N>1.
2:     ISSORT – LOGICALInput
On entry: set ISSORT=.TRUE. if the observations are sorted in ascending order; otherwise the routine will sort the observations.
3:     YN – REAL (KIND=nag_wp) arrayInput
On entry: yi, for i=1,2,,n, the n observations.
Constraint: if ISSORT=.TRUE., values must be sorted in ascending order. Each yi must be greater than zero.
4:     YBAR – REAL (KIND=nag_wp)Output
On exit: the maximum likelihood estimate of mean.
5:     A2 – REAL (KIND=nag_wp)Output
On exit: A2, the Anderson–Darling test statistic.
6:     AA2 – REAL (KIND=nag_wp)Output
On exit: the adjusted A2.
7:     P – REAL (KIND=nag_wp)Output
On exit: p, the upper tail probability for the adjusted A2.
8:     IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is 0. 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>1.
IFAIL=3
ISSORT=.TRUE. and the data in Y is not sorted in ascending order.
IFAIL=9
The data in Y must be greater than zero.
IFAIL=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.8 in the Essential Introduction for further information.
IFAIL=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.7 in the Essential Introduction for further information.
IFAIL=-999
Dynamic memory allocation failed.
See Section 3.6 in the Essential Introduction for further information.

7  Accuracy

Probabilities are calculated using piecewise polynomial approximations to values estimated by simulation.

8  Parallelism and Performance

Not applicable.

9  Further Comments

None.

10  Example

This example calculates the A2 statistics for data assumed to arise from an unspecified exponential distribution and calculates the p-value.

10.1  Program Text

Program Text (g08clfe.f90)

10.2  Program Data

Program Data (g08clfe.d)

10.3  Program Results

Program Results (g08clfe.r)


G08CLF (PDF version)
G08 Chapter Contents
G08 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2015