NAG FL Interface
g02bff (coeffs_zero_miss_pair)
1
Purpose
g02bff computes means and standard deviations of variables, sums of squares and cross-products about zero and correlation-like coefficients for a set of data omitting cases with missing values from only those calculations involving the variables for which the values are missing.
2
Specification
Fortran Interface
Subroutine g02bff ( |
n, m, x, ldx, miss, xmiss, xbar, std, sspz, ldsspz, rz, ldrz, ncases, cnt, ldcnt, ifail) |
Integer, Intent (In) |
:: |
n, m, ldx, miss(m), 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,m), rz(ldrz,m), cnt(ldcnt,m) |
Real (Kind=nag_wp), Intent (Out) |
:: |
xbar(m), std(m) |
|
C Header Interface
#include <nag.h>
void |
g02bff_ (const Integer *n, const Integer *m, const double x[], const Integer *ldx, const Integer miss[], const double xmiss[], double xbar[], double std[], double sspz[], const Integer *ldsspz, double rz[], const Integer *ldrz, Integer *ncases, double cnt[], const Integer *ldcnt, Integer *ifail) |
|
C++ Header Interface
#include <nag.h> extern "C" {
void |
g02bff_ (const Integer &n, const Integer &m, const double x[], const Integer &ldx, const Integer miss[], const double xmiss[], 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 g02bff or nagf_correg_coeffs_zero_miss_pair.
3
Description
The input data consists of
observations for each of
variables, given as an array
where
is the
th observation on the
th variable. In addition, each of the
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
th variable is denoted by
. Missing values need not be specified for all variables.
Let
if the
th observation for the
th variable is a missing value, i.e., if a missing value,
, has been declared for the
th variable, and
(see also
Section 7); and
otherwise, for
and
.
The quantities calculated are:
-
(a)Means:
-
(b)Standard deviations:
-
(c)Sums of squares and cross-products about zero:
-
(d)Correlation-like coefficients:
where and
(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 or is zero, is set to zero.
-
(e)The number of cases used in the calculation of each of the correlation-like coefficients:
(The diagonal terms, , for , also give the number of cases used in the calculation of the means and the standard deviations .)
4
References
None.
5
Arguments
-
1:
– Integer
Input
-
On entry: , the number of observations or cases.
Constraint:
.
-
2:
– Integer
Input
-
On entry: , the number of variables.
Constraint:
.
-
3:
– Real (Kind=nag_wp) array
Input
-
On entry: must be set to , the value of the th observation on the th variable, for and .
-
4:
– Integer
Input
-
On entry: the first dimension of the array
x as declared in the (sub)program from which
g02bff is called.
Constraint:
.
-
5:
– Integer array
Input
-
On entry:
must be set equal to
if a missing value,
, is to be specified for the
th variable in the array
x, or set equal to
otherwise. Values of
miss must be given for all
variables in the array
x.
-
6:
– Real (Kind=nag_wp) array
Input
-
On entry:
must be set to the missing value,
, to be associated with the
th variable in the array
x, for those variables for which missing values are specified by means of the array
miss (see
Section 7).
-
7:
– Real (Kind=nag_wp) array
Output
-
On exit: the mean value,
, of the th variable, for .
-
8:
– Real (Kind=nag_wp) array
Output
-
On exit: the standard deviation,
, of the th variable, for .
-
9:
– Real (Kind=nag_wp) array
Output
-
On exit: is the cross-product about zero, , for and .
-
10:
– Integer
Input
-
On entry: the first dimension of the array
sspz as declared in the (sub)program from which
g02bff is called.
Constraint:
.
-
11:
– Real (Kind=nag_wp) array
Output
-
On exit: is the correlation-like coefficient, , between the th and th variables, for and .
-
12:
– Integer
Input
-
On entry: the first dimension of the array
rz as declared in the (sub)program from which
g02bff is called.
Constraint:
.
-
13:
– 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).
-
14:
– Real (Kind=nag_wp) array
Output
-
On exit: is the number of cases, , actually used in the calculation of , and , the sum of cross-products and correlation-like coefficient for the th and th variables, for and .
-
15:
– Integer
Input
-
On entry: must specify the first dimension of the array
cnt as declared in the (sub)program from which
g02bff is called.
Constraint:
.
-
16:
– Integer
Input/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 4 in the Introduction to the NAG Library FL Interface 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, because for this routine the values of the output arguments may be useful even if
on exit, 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).
6
Error 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:
Note: in some cases g02bff may return useful information.
-
On entry, .
Constraint: .
-
On entry, .
Constraint: .
-
On entry, and .
Constraint: .
On entry, and .
Constraint: .
On entry, and .
Constraint: .
On entry, and .
Constraint: .
-
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
.
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.
7
Accuracy
g02bff does not use additional precision arithmetic for the accumulation of scalar products, so there may be a loss of significant figures for large .
You are warned of the need to exercise extreme care in your selection of missing values.
g02bff treats all values in the inclusive range
, where
is the missing value for variable
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
g02bff is not threaded in any implementation.
The time taken by g02bff depends on and , and the occurrence of missing values.
The routine uses a two-pass algorithm.
9.1
Internal Changes
Internal changes have been made to this routine as follows:
- At Mark 27: The algorithm underlying this routine has been altered to improve efficiency for large problem sizes on a multi-threaded system.
For details of all known issues which have been reported for the NAG Library please refer to the
Known Issues.
10
Example
This example reads in a set of data consisting of five observations on each of three variables. Missing values of , and are declared for the first, second and third variables respectively. The means, standard deviations, sums of squares and cross-products about zero, and correlation-like coefficients for all three 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 omits cases and in calculating the correlation between the first and second variables, and cases and for the first and third variables, etc.
10.1
Program Text
10.2
Program Data
10.3
Program Results