G13AUF (PDF version)
G13 Chapter Contents
G13 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

G13AUF

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

G13AUF calculates the range (or standard deviation) and the mean for groups of successive time series values. It is intended for use in the construction of range-mean plots.

2  Specification

SUBROUTINE G13AUF ( N, Z, M, NGRPS, RS, Y, MEAN, IFAIL)
INTEGER  N, M, NGRPS, IFAIL
REAL (KIND=nag_wp)  Z(N), Y(NGRPS), MEAN(NGRPS)
CHARACTER(1)  RS

3  Description

Let Z1,Z2,,Zn denote n successive observations in a time series. The series may be divided into groups of m successive values and for each group the range or standard deviation (depending on a user-supplied option) and the mean are calculated. If n is not a multiple of m then groups of equal size m are found starting from the end of the series of observations provided, and any remaining observations at the start of the series are ignored. The number of groups used, k, is the integer part of n/m. If you wish to ensure that no observations are ignored then the number of observations, n, should be chosen so that n is divisible by m.
The mean, Mi, the range, Ri, and the standard deviation, Si, for the ith group are defined as
Mi=1mj=1mZl+mi-1+j Ri=max1jmZl+mi-1+j-min1jmZl+mi-1+j
and
Si= 1m- 1 j= 1mZl+mi- 1+j-Mi2
where l=n-km, the number of observations ignored.
For seasonal data it is recommended that m should be equal to the seasonal period. For non-seasonal data the recommended group size is 8.
A plot of range against mean or of standard deviation against mean is useful for finding a transformation of the series which makes the variance constant. If the plot appears random or the range (or standard deviation) seems to be constant irrespective of the mean level then this suggests that no transformation of the time series is called for. On the other hand an approximate linear relationship between range (or standard deviation) and mean would indicate that a log transformation is appropriate. Further details may be found in either Jenkins (1979) or McLeod (1982).
You have the choice of whether to use the range or the standard deviation as a measure of variability. If the group size is small they are both equally good but if the group size is fairly large (e.g., m=12 for monthly data) then the range may not be as good an estimate of variability as the standard deviation.

4  References

Jenkins G M (1979) Practical Experiences with Modelling and Forecasting Time Series GJP Publications, Lancaster
McLeod G (1982) Box–Jenkins in Practice. 1: Univariate Stochastic and Single Output Transfer Function/Noise Analysis GJP Publications, Lancaster

5  Parameters

1:     N – INTEGERInput
On entry: n, the number of observations in the time series.
Constraint: NM.
2:     Z(N) – REAL (KIND=nag_wp) arrayInput
On entry: Zt must contain the tth observation Zt, for t=1,2,,n.
3:     M – INTEGERInput
On entry: m, the group size.
Constraint: M2.
4:     NGRPS – INTEGERInput
On entry: k, the number of groups.
Constraint: NGRPS=intN/M.
5:     RS – CHARACTER(1)Input
On entry: indicates whether ranges or standard deviations are to be calculated.
RS='R'
Ranges are calculated.
RS='S'
Standard deviations are calculated.
Constraint: RS='R' or 'S'.
6:     Y(NGRPS) – REAL (KIND=nag_wp) arrayOutput
On exit: Yi contains the range or standard deviation, as determined by RS, of the ith group of observations, for i=1,2,,k.
7:     MEAN(NGRPS) – REAL (KIND=nag_wp) arrayOutput
On exit: MEANi contains the mean of the ith group of observations, for i=1,2,,k.
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<M,
orM<2,
orNGRPS integer part of N/M.
IFAIL=2
On entry,RS is not equal to 'R' or 'S'.

7  Accuracy

The computations are believed to be stable.

8  Further Comments

The time taken by G13AUF is approximately proportional to n.
If you wish to obtain a plot of the group ranges or standard deviations against the group means then G01AGF may be used. The plot is output to the unit defined by X04ABF. You should note that G01AGF sorts the data to be plotted on the y axis (in this case the ranges or standard deviations). If required you may use M01EAF to re-arrange the data into their original order.

9  Example

The following program produces the statistics for a range-mean plot for a series of 100 observations divided into groups of 8.

9.1  Program Text

Program Text (g13aufe.f90)

9.2  Program Data

Program Data (g13aufe.d)

9.3  Program Results

Program Results (g13aufe.r)


G13AUF (PDF version)
G13 Chapter Contents
G13 Chapter Introduction
NAG Library Manual

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