G02BZF combines two sets of sample means and sums of squares and cross-products matrices. It is designed to be used in conjunction with
G02BUF to allow large datasets to be summarised.
Let
and
denote two sets of data, each with
variables and
and
observations respectively. Let
denote the (optionally weighted) vector of
means for the first dataset and
denote either the sums of squares and cross-products of deviations from
or the sums of squares and cross-products, in which case
where
is a vector of
ones and
is a diagonal matrix of (optional) weights, with the sum of the diagonal elements of
equal to
. Similarly, let
,
and
denote the same quantities for the second dataset.
Given
and
G02BZF calculates
,
and
as if a dataset
, with
variables and
observations were supplied to
G02BUF, with
constructed as
G02BZF has been designed to combine the results from two calls to
G02BUF allowing large datasets, or cases where all the data is not available at the same time, to be summarised.
Bennett J, Pebay P, Roe D and Thompson D (2009) Numerically stable, single-pass, parallel statistics algorithms Proceedings of IEEE International Conference on Cluster Computing
- 1: MEAN – CHARACTER(1)Input
On entry: indicates whether the matrices supplied in
XC and
YC are sums of squares and cross-products, or sums of squares and cross-products of deviations about the mean.
- Sums of squares and cross-products of deviations about the mean have been supplied.
- Sums of squares and cross-products have been supplied.
Constraint:
or .
- 2: M – INTEGERInput
On entry: , the number of variables.
Constraint:
.
- 3: XSW – REAL (KIND=nag_wp)Input/Output
On entry: , the sum of weights, from the first set of data, . If the data is unweighted then this will be the number of observations in the first dataset.
On exit: , the sum of weights, from the combined dataset, . If both datasets are unweighted then this will be the number of observations in the combined dataset.
Constraint:
.
- 4: XMEAN(M) – REAL (KIND=nag_wp) arrayInput/Output
On entry: , the sample means for the first set of data, .
On exit: , the sample means for the combined data, .
- 5: XC() – REAL (KIND=nag_wp) arrayInput/Output
On entry:
, the sums of squares and cross-products matrix for the first set of data,
, as returned by
G02BUF.
G02BUF, returns this matrix packed by columns, i.e., the cross-product between the
th and
th variable,
, is stored in
.
No check is made that is a valid cross-products matrix.
On exit:
, the sums of squares and cross-products matrix for the combined dataset,
.
This matrix is again stored packed by columns.
- 6: YSW – REAL (KIND=nag_wp)Input
On entry: , the sum of weights, from the second set of data, . If the data is unweighted then this will be the number of observations in the second dataset.
Constraint:
.
- 7: YMEAN(M) – REAL (KIND=nag_wp) arrayInput
On entry: , the sample means for the second set of data, .
- 8: YC() – REAL (KIND=nag_wp) arrayInput
On entry:
, the sums of squares and cross-products matrix for the second set of data,
, as returned by
G02BUF.
G02BUF, returns this matrix packed by columns, i.e., the cross-product between the
th and
th variable,
, is stored in
.
No check is made that is a valid cross-products matrix.
- 9: IFAIL – INTEGERInput/Output
-
On entry:
IFAIL must be set to
,
. 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
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is
.
When the value 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).
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
X04AAF).
Not applicable.
None.
This example illustrates the use of G02BZF by dividing a dataset into three blocks of
,
and
observations respectively. Each block of data is summarised using
G02BUF and then the three summaries combined using G02BZF.
The resulting sums of squares and cross-products matrix is then scaled to obtain the covariance matrix for the whole dataset.