PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_correg_coeffs_pearson_subset_miss_pair (g02bj)
Purpose
nag_correg_coeffs_pearson_subset_miss_pair (g02bj) 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.
Syntax
[
xbar,
std,
ssp,
r,
ncases,
cnt,
ifail] = g02bj(
x,
miss,
xmiss,
kvar, 'n',
n, 'm',
m, 'nvars',
nvars)
[
xbar,
std,
ssp,
r,
ncases,
cnt,
ifail] = nag_correg_coeffs_pearson_subset_miss_pair(
x,
miss,
xmiss,
kvar, 'n',
n, 'm',
m, 'nvars',
nvars)
Note: the interface to this routine has changed since earlier releases of the toolbox:
At Mark 22: |
n was made optional |
Description
The input data consists of
observations for each of
variables, given as an array
where
is the
th observation on the
th variable, together with the subset of these variables,
, for which information is required.
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
Accuracy); and
otherwise, for
and
.
The quantities calculated are:
(a) |
Means:
|
(b) |
Standard deviations:
|
(c) |
Sums of squares and cross-products of deviations from means:
where
(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:
where
(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 or is zero, is set to zero. |
(e) |
The number of cases used in the calculation of each of the correlation coefficients:
(The diagonal terms, , for , also give the number of cases used in the calculation of the means, , and the standard deviations, .) |
References
None.
Parameters
Compulsory Input Parameters
- 1:
– double array
-
ldx, the first dimension of the array, must satisfy the constraint
.
must be set to , the value of the th observation on the th variable, for and .
- 2:
– int64int32nag_int array
-
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.
- 3:
– double array
-
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
Accuracy).
- 4:
– int64int32nag_int array
-
must be set to the column number in
x of the
th variable for which information is required, for
.
Constraint:
, for .
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the first dimension of the array
x.
, the number of observations or cases.
Constraint:
.
- 2:
– int64int32nag_int scalar
-
Default:
the dimension of the arrays
miss,
xmiss and the second dimension of the array
x. (An error is raised if these dimensions are not equal.)
, the number of variables.
Constraint:
.
- 3:
– int64int32nag_int scalar
-
Default:
the dimension of the array
kvar.
, the number of variables for which information is required.
Constraint:
.
Output Parameters
- 1:
– double array
-
The mean value,
, of the variable specified in , for .
- 2:
– double array
-
The standard deviation,
, of the variable specified in , for .
- 3:
– double array
-
is the cross-product of deviations, , for the variables specified in and , for and .
- 4:
– double array
-
is the product-moment correlation coefficient, , between the variables specified in and , for and .
- 5:
– int64int32nag_int scalar
-
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).
- 6:
– double array
-
is the number of cases, , actually used in the calculation of , and , the sum of cross-products and correlation coefficient for the variables specified in and , for and .
- 7:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Note: nag_correg_coeffs_pearson_subset_miss_pair (g02bj) may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the function:
Cases prefixed with W are classified as warnings and
do not generate an error of type NAG:error_n. See nag_issue_warnings.
-
-
-
-
On entry, | , |
or | . |
-
-
On entry, | , |
or | , |
or | , |
or | . |
-
-
On entry, | , |
or | for some . |
- W
-
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 function even if
.
-
An unexpected error has been triggered by this routine. Please
contact
NAG.
-
Your licence key may have expired or may not have been installed correctly.
-
Dynamic memory allocation failed.
Accuracy
nag_correg_coeffs_pearson_subset_miss_pair (g02bj) 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.
nag_correg_coeffs_pearson_subset_miss_pair (g02bj) 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.
Further Comments
The time taken by nag_correg_coeffs_pearson_subset_miss_pair (g02bj) depends on and , and the occurrence of missing values.
The function uses a two-pass algorithm.
Example
This example reads in a set of data consisting of five observations on each of four variables. Missing values of , and 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 and in calculating the correlation between the fourth and first variables, and cases and for the fourth and second variables etc.
Open in the MATLAB editor:
g02bj_example
function g02bj_example
fprintf('g02bj example results\n\n');
x = [ 3, 3, 1, 2;
6, 4, -1, 4;
9, 0, 5, 9;
12, 2, 0, 0;
-1, 5, 4, 12];
[n,m] = size(x);
fprintf('Number of variables (columns) = %d\n', m);
fprintf('Number of cases (rows) = %d\n\n', n);
disp('Data matrix is:-');
disp(x);
miss = [int64(1); 1; 0; 1];
xmiss = [ -1; 0; 0; 0];
kvar = [int64(4);1;2];
nvar = size(kvar,1);
[xbar, std, ssp, r, ncases, count, ifail] = ...
g02bj( ...
x, miss, xmiss, kvar);
fprintf('Variable Mean St. dev.\n');
fprintf('%5d%11.4f%11.4f\n',[double(kvar) xbar(1:nvar) std(1:nvar)]');
fprintf('\nSums of squares and cross-products of deviations\n');
disp(ssp)
fprintf('Correlation coefficients\n');
disp(r);
fprintf('Number of cases used for any pair of variables = %d\n\n', ncases);
fprintf('Numbers used for each pair are:\n ');
fprintf('%10d',kvar);
for j=1:nvar
fprintf('\n%3d:',kvar(j));
fprintf('%10.1f',count(j,:));
end
fprintf('\n')
g02bj example results
Number of variables (columns) = 4
Number of cases (rows) = 5
Data matrix is:-
3 3 1 2
6 4 -1 4
9 0 5 9
12 2 0 0
-1 5 4 12
Variable Mean St. dev.
4 6.7500 4.5735
1 7.5000 3.8730
2 3.5000 1.2910
Sums of squares and cross-products of deviations
62.7500 21.0000 10.0000
21.0000 45.0000 -6.0000
10.0000 -6.0000 5.0000
Correlation coefficients
1.0000 0.9707 0.9449
0.9707 1.0000 -0.6547
0.9449 -0.6547 1.0000
Number of cases used for any pair of variables = 3
Numbers used for each pair are:
4 1 2
4: 4.0 3.0 3.0
1: 3.0 4.0 3.0
2: 3.0 3.0 4.0
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015