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

NAG Library Routine Document

G02BJF

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

G02BJF computes means and standard deviations, sums of squares and cross-products of deviations from means, and Pearson product-moment correlation 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 G02BJF ( N, M, X, LDX, MISS, XMISS, NVARS, KVAR, XBAR, STD, SSP, LDSSP, R, LDR, NCASES, CNT, LDCNT, IFAIL)
INTEGER  N, M, LDX, MISS(M), NVARS, KVAR(NVARS), LDSSP, LDR, NCASES, LDCNT, IFAIL
REAL (KIND=nag_wp)  X(LDX,M), XMISS(M), XBAR(NVARS), STD(NVARS), SSP(LDSSP,NVARS), R(LDR,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,,m m2,  
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 of deviations from means:
Sjk=i=1nwijwikxij-x-jkxik-x-kj,  j,k=v1,v2,,vp,  
where
x-jk=i= 1nwijwikxij i= 1nwijwik   and   x-kj=i= 1nwikwijxik i= 1nwikwij ,  
(i.e., the means used in the calculation of the sum of squares and cross-products of deviations are based on the same set of observations as are the cross-products).
(d) Pearson product-moment correlation coefficients:
Rjk=SjkSjjkSkkj ,  j,k=v1,v2,,vp,  
where
Sjjk=i= 1nwijwikxij-x-jk2   and   Skkj=i= 1nwikwijxik-x-kj2,  
(i.e., the sums of squares of deviations used in the denominator are based on the same set of observations as are used in the calculation of the numerator).
If Sjjk or Skkj is zero, Rjk is set to zero.
(e) The number of cases used in the calculation of each of the correlation coefficients:
cjk=i=1nwijwik,  j,k=v1,v2,,vp.  
(The diagonal terms, cjj, for j=v1,v2,,vp, 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:     XLDXM – 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 G02BJF is called.
Constraint: LDXN.
5:     MISSM – 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:     XMISSM – 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:     KVARNVARS – 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:     XBARNVARS – REAL (KIND=nag_wp) arrayOutput
On exit: the mean value, x-j, of the variable specified in KVARj, for j=1,2,,p.
10:   STDNVARS – REAL (KIND=nag_wp) arrayOutput
On exit: the standard deviation, sj, of the variable specified in KVARj, for j=1,2,,p.
11:   SSPLDSSPNVARS – REAL (KIND=nag_wp) arrayOutput
On exit: SSPjk is the cross-product of deviations, Sjk, for the variables specified in KVARj and KVARk, for j=1,2,,p and k=1,2,,p.
12:   LDSSP – INTEGERInput
On entry: the first dimension of the array SSP as declared in the (sub)program from which G02BJF is called.
Constraint: LDSSPNVARS.
13:   RLDRNVARS – REAL (KIND=nag_wp) arrayOutput
On exit: Rjk is the product-moment correlation coefficient, Rjk, between the variables specified in KVARj and KVARk, for j=1,2,,p and k=1,2,,p.
14:   LDR – INTEGERInput
On entry: the first dimension of the array R as declared in the (sub)program from which G02BJF is called.
Constraint: LDRNVARS.
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 coefficients (when cases involving missing values have been eliminated).
16:   CNTLDCNTNVARS – REAL (KIND=nag_wp) arrayOutput
On exit: CNTjk is the number of cases, cjk, actually used in the calculation of Sjk, and Rjk, the sum of cross-products and correlation 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 G02BJF 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: G02BJF 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,
orLDSSP<NVARS,
orLDR<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 coefficients based on two or more cases are returned by the routine even if IFAIL=5.
IFAIL=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.8 in the Essential Introduction for further information.
IFAIL=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.7 in the Essential Introduction for further information.
IFAIL=-999
Dynamic memory allocation failed.
See Section 3.6 in the Essential Introduction for further information.

7  Accuracy

G02BJF 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. G02BJF 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  Parallelism and Performance

Not applicable.

9  Further Comments

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

10  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 of deviations from means, and Pearson product-moment correlation 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 variables, and cases 3 and 4 for the fourth and second variables etc.

10.1  Program Text

Program Text (g02bjfe.f90)

10.2  Program Data

Program Data (g02bjfe.d)

10.3  Program Results

Program Results (g02bjfe.r)


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

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