G01ANF (PDF version)
G01 Chapter Contents
G01 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

G01ANF

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

G01ANF finds approximate quantiles from a data stream of known size using an out-of-core algorithm.

2  Specification

SUBROUTINE G01ANF ( IND, N, RV, NB, EPS, NP, Q, QV, NQ, RCOMM, LRCOMM, ICOMM, LICOMM, IFAIL)
INTEGER  IND, N, NB, NP, NQ, LRCOMM, ICOMM(LICOMM), LICOMM, IFAIL
REAL (KIND=nag_wp)  RV(*), EPS, Q(*), QV(*), RCOMM(LRCOMM)

3  Description

A quantile is a value which divides a frequency distribution such that there is a given proportion of data values below the quantile. For example, the median of a dataset is the 0.5 quantile because half the values are less than or equal to it.
G01ANF uses a slightly modified version of an algorithm described in a paper by Zhang and Wang (2007) to determine ε-approximate quantiles of a data stream of n real values, where n is known. Given any quantile q0.0,1.0, an ε-approximate quantile is defined as an element in the data stream whose rank falls within q-εn,q+εn . In case of more than one ε-approximate quantile being available, the one closest to qn is returned.

4  References

Zhang Q and Wang W (2007) A fast algorithm for approximate quantiles in high speed data streams Proceedings of the 19th International Conference on Scientific and Statistical Database Management IEEE Computer Society 29

5  Parameters

1:     IND – INTEGERInput/Output
On entry: indicates the action required in the current call to G01ANF.
IND=0
Return the required length of RCOMM and ICOMM in ICOMM1 and ICOMM2 respectively. N and EPS must be set and LICOMM must be at least 2.
IND=1
Initialise the communication arrays and process the first NB values from the data stream as supplied in RV.
IND=2
Process the next block of NB values from the data stream. The calling program must update RV and (if required) NB, and re-enter G01ANF with all other parameters unchanged.
IND=3
Calculate the NQ ε-approximate quantiles specified in Q. The calling program must set Q and NQ and re-enter G01ANF with all other parameters unchanged. This option can be chosen only when NPexp1.0/EPS.
On exit: indicates output from a successful call.
IND=1
Lengths of RCOMM and ICOMM have been returned in ICOMM1 and ICOMM2 respectively.
IND=2
G01ANF has processed NP data points and expects to be called again with additional data (i.e., NP<N).
IND=3
G01ANF has returned the requested ε-approximate quantiles in QV. These quantiles are based on NP data points.
IND=4
Routine has processed all N data points (i.e., NP=N).
Constraint: on entry IND=0, 1, 2 or 3.
2:     N – INTEGERInput
On entry: n, the total number of values in the data stream.
Constraint: N>0.
3:     RV(*) – REAL (KIND=nag_wp) arrayInput
Note: the dimension of the array RV must be at least NB if IND=1 or 2.
On entry: if IND=1 or 2, the vector containing the current block of data, otherwise RV is not referenced.
4:     NB – INTEGERInput
On entry: if IND=1 or 2, the size of the current block of data. The size of blocks of data in array RV can vary; therefore NB can change between calls to G01ANF.
Constraint: if IND=1 or 2, NB>0.
5:     EPS – REAL (KIND=nag_wp)Input
On entry: approximation factor ε.
Constraint: EPSexp1.0/N ​ and ​EPS1.0.
6:     NP – INTEGEROutput
On exit: the number of elements processed so far.
7:     Q(*) – REAL (KIND=nag_wp) arrayInput
Note: the dimension of the array Q must be at least NQ if IND=3.
On entry: if IND=3, the quantiles to be calculated, otherwise Q is not referenced. Note that Qi=0.0, corresponds to the minimum value and Qi=1.0 to the maximum value.
Constraint: if IND=3, 0.0Qi1.0, for i=1,2,,NQ.
8:     QV(*) – REAL (KIND=nag_wp) arrayOutput
Note: the dimension of the array QV must be at least NQ if IND=3.
On exit: if IND=3, QVi contains the ε-approximate quantiles specified by the value provided in Qi.
9:     NQ – INTEGERInput
On entry: if IND=3, the number of quantiles requested, otherwise NQ is not referenced.
Constraint: if IND=3, NQ>0.
10:   RCOMM(LRCOMM) – REAL (KIND=nag_wp) arrayCommunication Array
11:   LRCOMM – INTEGERInput
On entry: the dimension of the array RCOMM as declared in the (sub)program from which G01ANF is called.
Constraint: if IND0, LRCOMM must be at least equal to the value returned in ICOMM1 by a call to G01ANF with IND=0. This will not be more than x+2× minx, x/2.0 + 1 × log2 N/x+1.0 + 1 , where x= max1, logEPS×N / EPS .
12:   ICOMM(LICOMM) – INTEGER arrayCommunication Array
13:   LICOMM – INTEGERInput
On entry: the dimension of the array ICOMM as declared in the (sub)program from which G01ANF is called.
Constraints:
  • if IND=0, LICOMM2;
  • otherwise LICOMM must be at least equal to the value returned in ICOMM2 by a call to G01ANF with IND=0. This will not be more than 2 × x+2 × minx, x/2.0 +1 × y + y + 6 , where x = max1, logEPS×N / EPS  and y = log2 N/x+1.0 + 1 .
14:   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.
On exit: IFAIL=0 unless the routine detects an error (see Section 6).
As an out-of-core routine G01ANF will only perform certain parameter checks when a data checkpoint (including completion of data input) is signaled. As such it will usually be inappropriate to halt program execution when an error is detected since any errors may be subsequently resolved without losing any processing already carried out. Therefore setting IFAIL to a value of -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.

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,IND0, 1, 2 or 3.
IFAIL=2
On entry,N<1.
IFAIL=3
On entry,EPS<exp1.0/N or EPS>1.0.
IFAIL=4
On entry,IND=1 or 2 and NB<1.
IFAIL=5
On entry,LICOMM is too small.
IFAIL=6
On entry,LRCOMM is too small.
IFAIL=7
On entry, number of data elements streamed is not sufficient for the ε-approximate quantile query. Supply more data or reprocess the data with a higher EPS value.
IFAIL=8
On entry,IND=3 and NQ<1.
IFAIL=9
On entry,IND=3 and Qi<0.0 or Qi>1.0 for at least one i.

7  Accuracy

Not applicable.

8  Further Comments

The average time taken by G01ANF is N log1/εlogεN .

9  Example

This example calculates ε-approximate quantile for q=0.25, 0.5 and 1.0 for a data stream of 60 values. The stream is read in four blocks of varying size.

9.1  Program Text

Program Text (g01anfe.f90)

9.2  Program Data

Program Data (g01anfe.d)

9.3  Program Results

Program Results (g01anfe.r)


G01ANF (PDF version)
G01 Chapter Contents
G01 Chapter Introduction
NAG Library Manual

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