G07DAF (PDF version)
G07 Chapter Contents
G07 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

G07DAF

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

G07DAF finds the median, median absolute deviation, and a robust estimate of the standard deviation for a set of ungrouped data.

2  Specification

SUBROUTINE G07DAF ( N, X, Y, XME, XMD, XSD, IFAIL)
INTEGER  N, IFAIL
REAL (KIND=nag_wp)  X(N), Y(N), XME, XMD, XSD

3  Description

The data consists of a sample of size n, denoted by x1,x2,,xn, drawn from a random variable X.
G07DAF first computes the median,
θmed=medixi,
and from this the median absolute deviation can be computed,
σmed=medixi-θmed.
Finally, a robust estimate of the standard deviation is computed,
σmed=σmed/Φ-10.75
where Φ-10.75 is the value of the inverse standard Normal function at the point 0.75.
G07DAF is based upon subroutine LTMDDV within the ROBETH library, see Marazzi (1987).

4  References

Huber P J (1981) Robust Statistics Wiley
Marazzi A (1987) Subroutines for robust estimation of location and scale in ROBETH Cah. Rech. Doc. IUMSP, No. 3 ROB 1 Institut Universitaire de Médecine Sociale et Préventive, Lausanne

5  Parameters

1:     N – INTEGERInput
On entry: n, the number of observations.
Constraint: N>1.
2:     X(N) – REAL (KIND=nag_wp) arrayInput
On entry: the vector of observations, x1,x2,,xn.
3:     Y(N) – REAL (KIND=nag_wp) arrayOutput
On exit: the observations sorted into ascending order.
4:     XME – REAL (KIND=nag_wp)Output
On exit: the median, θmed.
5:     XMD – REAL (KIND=nag_wp)Output
On exit: the median absolute deviation, σmed.
6:     XSD – REAL (KIND=nag_wp)Output
On exit: the robust estimate of the standard deviation, σmed.
7:     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,N1.

7  Accuracy

The computations are believed to be stable.

8  Further Comments

Unless otherwise stated in the Users' Note, the routine may be called with the same actual array supplied for parameters X and Y, in which case the sorted data values will overwrite the original contents of X. However this is not standard Fortran, and may not work on all systems.

9  Example

The following program reads in a set of data consisting of eleven observations of a variable X. The median, median absolute deviation and a robust estimate of the standard deviation are calculated and printed along with the sorted data in output array Y.

9.1  Program Text

Program Text (g07dafe.f90)

9.2  Program Data

Program Data (g07dafe.d)

9.3  Program Results

Program Results (g07dafe.r)


G07DAF (PDF version)
G07 Chapter Contents
G07 Chapter Introduction
NAG Library Manual

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