NAG CL Interface
g08clc (gofstat_​anddar_​exp)

Settings help

CL Name Style:


1 Purpose

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

2 Specification

#include <nag.h>
void  g08clc (Integer n, Nag_Boolean issort, const double y[], double *ybar, double *a2, double *aa2, double *p, NagError *fail)
The function may be called by the names: g08clc, nag_nonpar_gofstat_anddar_exp or nag_anderson_darling_exp_prob.

3 Description

Calculates the Anderson–Darling test statistic A2 (see g08chc) 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 Arguments

1: n Integer Input
On entry: n, the number of observations.
Constraint: n>1.
2: issort Nag_Boolean Input
On entry: set issort=Nag_TRUE if the observations are sorted in ascending order; otherwise the function will sort the observations.
3: y[n] const double Input
On entry: yi, for i=1,2,,n, the n observations.
Constraint: if issort=Nag_TRUE, values must be sorted in ascending order. Each yi must be greater than zero.
4: ybar double * Output
On exit: the maximum likelihood estimate of mean.
5: a2 double * Output
On exit: A2, the Anderson–Darling test statistic.
6: aa2 double * Output
On exit: the adjusted A2.
7: p double * Output
On exit: p, the upper tail probability for the adjusted A2.
8: fail NagError * Input/Output
The NAG error argument (see Section 7 in the Introduction to the NAG Library CL Interface).

6 Error Indicators and Warnings

NE_ALLOC_FAIL
Dynamic memory allocation failed.
See Section 3.1.2 in the Introduction to the NAG Library CL Interface for further information.
NE_BAD_PARAM
On entry, argument value had an illegal value.
NE_BOUND
The data in y must be greater than zero.
NE_INT
On entry, n=value.
Constraint: n>1.
NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.
See Section 7.5 in the Introduction to the NAG Library CL Interface for further information.
NE_NO_LICENCE
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library CL Interface for further information.
NE_NOT_INCREASING
issort=Nag_TRUE and the data in y is not sorted in ascending order.

7 Accuracy

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

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
g08clc is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this function. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

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 (g08clce.c)

10.2 Program Data

Program Data (g08clce.d)

10.3 Program Results

Program Results (g08clce.r)