g02buf calculates the sample means and sums of squares and cross-products, or sums of squares and cross-products of deviations from the mean, in a single pass for a set of data. The data may be weighted.
The routine may be called by the names g02buf or nagf_correg_ssqmat.
3Description
g02buf is an adaptation of West's WV2 algorithm; see West (1979). This routine calculates the (optionally weighted) sample means and (optionally weighted) sums of squares and cross-products or sums of squares and cross-products of deviations from the (weighted) mean for a sample of observations on variables , for . The algorithm makes a single pass through the data.
For the first observations let the mean of the th variable be , the cross-product about the mean for the th and th variables be and the sum of weights be . These are updated by the th observation, , for , with weight as follows:
and
The algorithm is initialized by taking , the first observation, and .
For the unweighted case and for all .
Note that only the upper triangle of the matrix is calculated and returned packed by column.
4References
Chan T F, Golub G H and Leveque R J (1982) Updating Formulae and a Pairwise Algorithm for Computing Sample Variances Compstat, Physica-Verlag
West D H D (1979) Updating mean and variance estimates: An improved method Comm. ACM22 532–555
5Arguments
1: – Character(1)Input
On entry: indicates whether g02buf is to calculate sums of squares and cross-products, or sums of squares and cross-products of deviations about the mean.
The sums of squares and cross-products of deviations about the mean are calculated.
The sums of squares and cross-products are calculated.
Constraint:
or .
2: – Character(1)Input
On entry: indicates whether the data is weighted or not.
The calculations are performed on unweighted data.
The calculations are performed on weighted data.
Constraint:
or .
3: – IntegerInput
On entry: , the number of observations in the dataset.
Constraint:
.
4: – IntegerInput
On entry: , the number of variables.
Constraint:
.
5: – Real (Kind=nag_wp) arrayInput
On entry: must contain the th observation on the th variable, for and .
6: – IntegerInput
On entry: the first dimension of the array x as declared in the (sub)program from which g02buf is called.
Constraint:
.
7: – Real (Kind=nag_wp) arrayInput
Note: the dimension of the array wt
must be at least
if .
On entry: the optional weights of each observation.
On exit: the sample means. contains the mean for the th variable.
10: – Real (Kind=nag_wp) arrayOutput
On exit: the cross-products.
If , c contains the upper triangular part of the matrix of (weighted) sums of squares and cross-products of deviations about the mean.
If , c contains the upper triangular part of the matrix of (weighted) sums of squares and cross-products.
These are stored packed by columns, i.e., the cross-product between the th and th variable, , is stored in .
11: – IntegerInput/Output
On entry: ifail must be set to , or to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of means that an error message is printed while a value of means that it is not.
If halting is not appropriate, the value or is recommended. If message printing is undesirable, then the value is recommended. Otherwise, the value is recommended. When the value or is used it is essential to test the value of ifail on exit.
On exit: unless the routine detects an error or a warning has been flagged (see Section 6).
6Error Indicators and Warnings
If on entry or , explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
On entry, and .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: or .
On entry, .
Constraint: or .
On entry, .
Constraint: , for .
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.
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.
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.
g02buf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.
9Further Comments
g02bwf may be used to calculate the correlation coefficients from the cross-products of deviations about the mean. The cross-products of deviations about the mean may be scaled
using f06edforf06fdf
to give a variance-covariance matrix.
The means and cross-products produced by g02buf may be updated by adding or removing observations using g02btf.
Two sets of means and cross-products, as produced by g02buf, can be combined using g02bzf.
10Example
A program to calculate the means, the required sums of squares and cross-products matrix, and the variance matrix for a set of observations of variables.