g13au 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.

Syntax

C#
public static void g13au(
	int n,
	double[] z,
	int m,
	int ngrps,
	string rs,
	double[] y,
	double[] mean,
	out int ifail
)
Visual Basic
Public Shared Sub g13au ( _
	n As Integer, _
	z As Double(), _
	m As Integer, _
	ngrps As Integer, _
	rs As String, _
	y As Double(), _
	mean As Double(), _
	<OutAttribute> ByRef ifail As Integer _
)
Visual C++
public:
static void g13au(
	int n, 
	array<double>^ z, 
	int m, 
	int ngrps, 
	String^ rs, 
	array<double>^ y, 
	array<double>^ mean, 
	[OutAttribute] int% ifail
)
F#
static member g13au : 
        n : int * 
        z : float[] * 
        m : int * 
        ngrps : int * 
        rs : string * 
        y : float[] * 
        mean : float[] * 
        ifail : int byref -> unit 

Parameters

n
Type: System..::..Int32
On entry: n, the number of observations in the time series.
Constraint: nm.
z
Type: array<System..::..Double>[]()[][]
An array of size [n]
On entry: z[t-1] must contain the tth observation Zt, for t=1,2,,n.
m
Type: System..::..Int32
On entry: m, the group size.
Constraint: m2.
ngrps
Type: System..::..Int32
On entry: k, the number of groups.
Constraint: ngrps=intn/m.
rs
Type: System..::..String
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".
y
Type: array<System..::..Double>[]()[][]
An array of size [ngrps]
On exit: y[i-1] contains the range or standard deviation, as determined by rs, of the ith group of observations, for i=1,2,,k.
mean
Type: array<System..::..Double>[]()[][]
An array of size [ngrps]
On exit: mean[i-1] contains the mean of the ith group of observations, for i=1,2,,k.
ifail
Type: System..::..Int32%
On exit: ifail=0 unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).

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+jRi=max1jmZl+mi-1+j-min1jmZl+mi-1+j
and
Si=1m-1j=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.

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

Error Indicators and Warnings

Errors or warnings detected by the method:
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".
ifail=-9000
An error occured, see message report.
ifail=-8000
Negative dimension for array value
ifail=-6000
Invalid Parameters value

Accuracy

The computations are believed to be stable.

Parallelism and Performance

None.

Further Comments

The time taken by g13au is approximately proportional to n.

Example

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

Example program (C#): g13aue.cs

Example program data: g13aue.d

Example program results: g13aue.r

See Also