G02BMF (PDF version)
G02 Chapter Contents
G02 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

G02BMF

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

G02BMF computes means and standard deviations, sums of squares and cross-products about zero, and correlation-like coefficients for selected variables omitting cases with missing values from only those calculations involving the variables for which the values are missing.

2  Specification

SUBROUTINE G02BMF ( N, M, X, LDX, MISS, XMISS, NVARS, KVAR, XBAR, STD, SSPZ, LDSSPZ, RZ, LDRZ, NCASES, CNT, LDCNT, IFAIL)
INTEGER  N, M, LDX, MISS(M), NVARS, KVAR(NVARS), LDSSPZ, LDRZ, NCASES, LDCNT, IFAIL
REAL (KIND=nag_wp)  X(LDX,M), XMISS(M), XBAR(NVARS), STD(NVARS), SSPZ(LDSSPZ,NVARS), RZ(LDRZ,NVARS), CNT(LDCNT,NVARS)

3  Description

The input data consists of n observations for each of m variables, given as an array
xij,  i=1,2,,n n2,j=1,2,,mm2,
where xij is the ith observation on the jth variable, together with the subset of these variables, v1,v2,,vp, for which information is required.
In addition, each of the m variables may optionally have associated with it a value which is to be considered as representing a missing observation for that variable; the missing value for the jth variable is denoted by xmj. Missing values need not be specified for all variables.
Let wij=0, if the ith observation for the jth variable is a missing value, i.e., if a missing value, xmj, has been declared for the jth variable, and xij=xmj (see also Section 7); and wij=1 otherwise, for i=1,2,,n and j=1,2,,m.
The quantities calculated are:
(a) Means:
x-j=i=1nwijxij i=1nwij ,  j=v1,v2,,vp.
(b) Standard deviations:
sj=i= 1nwij xij-x-j 2 i= 1nwij- 1 ,   j=v1,v2,,vp.
(c) Sums of squares and cross-products about zero:
S~jk=i=1nwijwikxijxik,  j,k=v1,v2,,vp.
(d) Correlation-like coefficients:
R~jk=S~jkS~jjk S~kkj ,   j,k=v1,v2,,vp ,
where S~jjk=i=1nwijwikxij2 and S~kkj=i=1nwikwijxik2 
(i.e., the sums of squares about zero are based on the same set of observations as are used in the calculation of the numerator).
If S~jjk or S~kkj is zero, R~jk is set to zero.
(e) The number of cases used in the calculation of each of the correlation-like coefficients:
cjk=i=1nwijwik,  j,k=v1,v2,,vp.
(The diagonal terms, cjj, for j=1,2,,n, also give the number of cases used in the calculation of the means x-j and the standard deviations sj.)

4  References

None.

5  Parameters

1:     N – INTEGERInput
On entry: n, the number of observations or cases.
Constraint: N2.
2:     M – INTEGERInput
On entry: m, the number of variables.
Constraint: M2.
3:     X(LDX,M) – REAL (KIND=nag_wp) arrayInput
On entry: Xij must be set to xij, the value of the ith observation on the jth variable, for i=1,2,,n and j=1,2,,m.
4:     LDX – INTEGERInput
On entry: the first dimension of the array X as declared in the (sub)program from which G02BMF is called.
Constraint: LDXN.
5:     MISS(M) – INTEGER arrayInput
On entry: MISSj must be set equal to 1 if a missing value, xmj, is to be specified for the jth variable in the array X, or set equal to 0 otherwise. Values of MISS must be given for all m variables in the array X.
6:     XMISS(M) – REAL (KIND=nag_wp) arrayInput
On entry: XMISSj must be set to the missing value, xmj, to be associated with the jth variable in the array X, for those variables for which missing values are specified by means of the array MISS (see Section 7).
7:     NVARS – INTEGERInput
On entry: p, the number of variables for which information is required.
Constraint: 2NVARSM.
8:     KVAR(NVARS) – INTEGER arrayInput
On entry: KVARj must be set to the column number in X of the jth variable for which information is required, for j=1,2,,p.
Constraint: 1KVARjM, for j=1,2,,p.
9:     XBAR(NVARS) – REAL (KIND=nag_wp) arrayOutput
On exit: the mean value, x-j, of the variable specified in KVARj, for j=1,2,,p.
10:   STD(NVARS) – REAL (KIND=nag_wp) arrayOutput
On exit: the standard deviation, sj, of the variable specified in KVARj, for j=1,2,,p.
11:   SSPZ(LDSSPZ,NVARS) – REAL (KIND=nag_wp) arrayOutput
On exit: SSPZjk is the cross-product about zero, S~jk, for the variables specified in KVARj and KVARk, for j=1,2,,p and k=1,2,,p.
12:   LDSSPZ – INTEGERInput
On entry: the first dimension of the array SSPZ as declared in the (sub)program from which G02BMF is called.
Constraint: LDSSPZNVARS.
13:   RZ(LDRZ,NVARS) – REAL (KIND=nag_wp) arrayOutput
On exit: RZjk is the correlation-like coefficient, R~jk, between the variables specified in KVARj and KVARk, for j=1,2,,p and k=1,2,,p.
14:   LDRZ – INTEGERInput
On entry: the first dimension of the array RZ as declared in the (sub)program from which G02BMF is called.
Constraint: LDRZNVARS.
15:   NCASES – INTEGEROutput
On exit: the minimum number of cases used in the calculation of any of the sums of squares and cross-products and correlation-like coefficients (when cases involving missing values have been eliminated).
16:   CNT(LDCNT,NVARS) – REAL (KIND=nag_wp) arrayOutput
On exit: CNTjk is the number of cases, cjk, actually used in the calculation of the sum of cross-product and correlation-like coefficient for the variables specified in KVARj and KVARk, for j=1,2,,p and k=1,2,,p.
17:   LDCNT – INTEGERInput
On entry: the first dimension of the array CNT as declared in the (sub)program from which G02BMF is called.
Constraint: LDCNTNVARS.
18:   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, because for this routine the values of the output parameters may be useful even if IFAIL0 on exit, the recommended value is -1. 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).
Note: G02BMF may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the routine:
IFAIL=1
On entry,N<2.
IFAIL=2
On entry,NVARS<2,
orNVARS>M.
IFAIL=3
On entry,LDX<N,
orLDSSPZ<NVARS,
orLDRZ<NVARS,
orLDCNT<NVARS.
IFAIL=4
On entry,KVARj<1,
orKVARj>M for some j=1,2,,NVARS.
IFAIL=5
After observations with missing values were omitted, fewer than two cases remained for at least one pair of variables. (The pairs of variables involved can be determined by examination of the contents of the array CNT.) All means, standard deviations, sums of squares and cross-products, and correlation-like coefficients based on two or more cases are returned by the routine even if IFAIL=5.

7  Accuracy

G02BMF does not use additional precision arithmetic for the accumulation of scalar products, so there may be a loss of significant figures for large n.
You are warned of the need to exercise extreme care in your selection of missing values. G02BMF treats all values in the inclusive range 1±0.1X02BEF-2×xmj, where xmj is the missing value for variable j specified in XMISS.
You must therefore ensure that the missing value chosen for each variable is sufficiently different from all valid values for that variable so that none of the valid values fall within the range indicated above.

8  Further Comments

The time taken by G02BMF depends on n and p, and the occurrence of missing values.
The routine uses a two-pass algorithm.

9  Example

This example reads in a set of data consisting of five observations on each of four variables. Missing values of -1.0, 0.0 and 0.0 are declared for the first, second and fourth variables respectively; no missing value is specified for the third variable. The means, standard deviations, sums of squares and cross-products about zero, and correlation-like coefficients for the fourth, first and second variables are then calculated and printed, omitting cases with missing values from only those calculations involving the variables for which the values are missing. The program therefore eliminates cases 4 and 5 in calculating the correlation between the fourth and first variable, and cases 3 and 4 for the fourth and second variables, etc.

9.1  Program Text

Program Text (g02bmfe.f90)

9.2  Program Data

Program Data (g02bmfe.d)

9.3  Program Results

Program Results (g02bmfe.r)


G02BMF (PDF version)
G02 Chapter Contents
G02 Chapter Introduction
NAG Library Manual

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