NAG FL Interface
g07gbf (outlier_​peirce_​2var)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

g07gbf returns a flag indicating whether a single data point is an outlier as defined by Peirce's criterion.

2 Specification

Fortran Interface
Function g07gbf ( n, e, var1, var2, x, lx, ux, ifail)
Logical :: g07gbf
Integer, Intent (In) :: n
Integer, Intent (Inout) :: ifail
Real (Kind=nag_wp), Intent (In) :: e, var1, var2
Real (Kind=nag_wp), Intent (Out) :: x, lx, ux
C Header Interface
#include <nag.h>
Nag_Boolean  g07gbf_ (const Integer *n, const double *e, const double *var1, const double *var2, double *x, double *lx, double *ux, Integer *ifail)
The routine may be called by the names g07gbf or nagf_univar_outlier_peirce_2var.

3 Description

g07gbf tests a potential outlying value using Peirce's criterion. Let
Peirce's method flags e~ as a potential outlier if |e~|x, where x=σ2z and z is obtained from the solution of
R = λ 1-n (n-1) n-1 nn (1)
where
R = 2 exp(( z2 - 1 2 )(1-Φ(z))) (2)
and Φ is the cumulative distribution function for the standard Normal distribution.
Unlike g07gaf, both σ2 and σ~2 must be supplied and, therefore, no assumptions are made about the nature of the relationship between these two quantities. Only a single potential outlier is tested for at a time.
This routine uses an algorithm described in e04abf/​e04aba to refine a lower, l, and upper, u, limit for x. This refinement stops when |e~|<l or |e~|>u.

4 References

Gould B A (1855) On Peirce's criterion for the rejection of doubtful observations, with tables for facilitating its application The Astronomical Journal 45
Peirce B (1852) Criterion for the rejection of doubtful observations The Astronomical Journal 45

5 Arguments

1: n Integer Input
On entry: n, the number of observations.
Constraint: n3.
2: e Real (Kind=nag_wp) Input
On entry: e~, the value being tested.
3: var1 Real (Kind=nag_wp) Input
On entry: σ2, the residual variance on fitting model M to y.
Constraint: var1>0.0.
4: var2 Real (Kind=nag_wp) Input
On entry: σ~2, the residual variance on fitting model M to y~.
Constraints:
  • var2>0.0;
  • var2<var1.
5: x Real (Kind=nag_wp) Output
On exit: an estimated value of x, the cutoff that indicates an outlier.
6: lx Real (Kind=nag_wp) Output
On exit: l, the lower limit for x.
7: ux Real (Kind=nag_wp) Output
On exit: u, the upper limit for x.
8: 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: n3.
ifail=3
On entry, var1=value.
Constraint: var1>0.0.
ifail=4
On entry, var1=value, var2=value.
Constraint: var2<var1.
On entry, var2=value.
Constraint: var2>0.0.
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

Not applicable.

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
g07gbf is not threaded in any implementation.

9 Further Comments

None.

10 Example

This example reads in a series of values and variances and checks whether each is a potential outlier.
The dataset used is from Peirce's original paper and consists of fifteen observations on the vertical semidiameter of Venus. Each subsequent line in the dataset, after the first, is the result of dropping the observation with the highest absolute value from the previous data and recalculating the variance.

10.1 Program Text

Program Text (g07gbfe.f90)

10.2 Program Data

Program Data (g07gbfe.d)

10.3 Program Results

Program Results (g07gbfe.r)