NAG FL Interface
g02bmf (coeffs_​zero_​subset_​miss_​pair)

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

Fortran Interface
Subroutine g02bmf ( n, m, x, ldx, miss, xmiss, nvars, kvar, xbar, std, sspz, ldsspz, rz, ldrz, ncases, cnt, ldcnt, ifail)
Integer, Intent (In) :: n, m, ldx, miss(m), nvars, kvar(nvars), ldsspz, ldrz, ldcnt
Integer, Intent (Inout) :: ifail
Integer, Intent (Out) :: ncases
Real (Kind=nag_wp), Intent (In) :: x(ldx,m), xmiss(m)
Real (Kind=nag_wp), Intent (Inout) :: sspz(ldsspz,nvars), rz(ldrz,nvars), cnt(ldcnt,nvars)
Real (Kind=nag_wp), Intent (Out) :: xbar(nvars), std(nvars)
C Header Interface
#include <nag.h>
void  g02bmf_ (const Integer *n, const Integer *m, const double x[], const Integer *ldx, const Integer miss[], const double xmiss[], const Integer *nvars, const Integer kvar[], double xbar[], double std[], double sspz[], const Integer *ldsspz, double rz[], const Integer *ldrz, Integer *ncases, double cnt[], const Integer *ldcnt, Integer *ifail)
The routine may be called by the names g02bmf or nagf_correg_coeffs_zero_subset_miss_pair.

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:
  1. (a)Means:
    x¯j=i=1nwijxij i=1nwij ,  j=v1,v2,,vp.  
  2. (b)Standard deviations:
    sj=i= 1nwij xij-x¯j 2 i= 1nwij- 1 ,   j=v1,v2,,vp.  
  3. (c)Sums of squares and cross-products about zero:
    S~jk=i=1nwijwikxijxik,  j,k=v1,v2,,vp.  
  4. (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.
  5. (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 Arguments

1: n Integer Input
On entry: n, the number of observations or cases.
Constraint: n2.
2: m Integer Input
On entry: m, the number of variables.
Constraint: m2.
3: xldxm Real (Kind=nag_wp) array Input
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 Integer Input
On entry: the first dimension of the array x as declared in the (sub)program from which g02bmf is called.
Constraint: ldxn.
5: missm Integer array Input
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) array Input
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 Integer Input
On entry: p, the number of variables for which information is required.
Constraint: 2nvarsm.
8: kvarnvars Integer array Input
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) array Output
On exit: the mean value, x¯j, of the variable specified in kvarj, for j=1,2,,p.
10: stdnvars Real (Kind=nag_wp) array Output
On exit: the standard deviation, sj, of the variable specified in kvarj, for j=1,2,,p.
11: sspzldsspznvars Real (Kind=nag_wp) array Output
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 Integer Input
On entry: the first dimension of the array sspz as declared in the (sub)program from which g02bmf is called.
Constraint: ldsspznvars.
13: rzldrznvars Real (Kind=nag_wp) array Output
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 Integer Input
On entry: the first dimension of the array rz as declared in the (sub)program from which g02bmf is called.
Constraint: ldrznvars.
15: ncases Integer Output
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: cntldcntnvars Real (Kind=nag_wp) array Output
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 Integer Input
On entry: the first dimension of the array cnt as declared in the (sub)program from which g02bmf is called.
Constraint: ldcntnvars.
18: ifail Integer Input/Output
On entry: ifail must be set to 0, -1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of -1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value -1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value -1 is recommended since useful values can be provided in some output arguments even when ifail0 on exit. 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).
Errors or warnings detected by the routine:
Note: in some cases g02bmf may return useful information.
ifail=1
On entry, n=value.
Constraint: n2.
ifail=2
On entry, nvars=value and m=value.
Constraint: nvars2 and nvarsm.
ifail=3
On entry, ldcnt=value and nvars=value.
Constraint: ldcntnvars.
On entry, ldrz=value and nvars=value.
Constraint: ldrznvars.
On entry, ldsspz=value and nvars=value.
Constraint: ldsspznvars.
On entry, ldx=value and n=value.
Constraint: ldxn.
ifail=4
On entry, i=value, kvari=value and m=value.
Constraint: 1kvarim.
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.
ifail=-99
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.
ifail=-399
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.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

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

g02bmf is not threaded in any implementation.

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

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

10.1 Program Text

Program Text (g02bmfe.f90)

10.2 Program Data

Program Data (g02bmfe.d)

10.3 Program Results

Program Results (g02bmfe.r)