PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_correg_coeffs_zero_subset_miss_case (g02bl)
Purpose
nag_correg_coeffs_zero_subset_miss_case (g02bl) computes means and standard deviations, sums of squares and cross-products about zero, and correlation-like coefficients for selected variables omitting completely any cases with a missing observation for any variable (either over all variables in the dataset or over only those variables in the selected subset).
Syntax
[
xbar,
std,
sspz,
rz,
ncases,
ifail] = g02bl(
x,
miss,
xmiss,
mistyp,
kvar, 'n',
n, 'm',
m, 'nvars',
nvars)
[
xbar,
std,
sspz,
rz,
ncases,
ifail] = nag_correg_coeffs_zero_subset_miss_case(
x,
miss,
xmiss,
mistyp,
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; miss and xmiss are no longer output parameters |
Description
The input data consist 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.
The missing values can be utilized in two slightly different ways, you can indicate which scheme is required.
Firstly, let
if observation
contains a missing value for any of those variables in the set
for which missing values have been declared, i.e., if
for any
(
) for which an
has been assigned (see also
Accuracy); and
otherwise, for
.
Secondly, let
if observation
contains a missing value for any of those variables in the selected subset
for which missing values have been declared, i.e., if
for any
for which an
has been assigned (see also
Accuracy); and
otherwise, for
.
The quantities calculated are:
(a) |
Means:
|
(b) |
Standard deviations:
|
(c) |
Sums of squares and cross-products about zero:
|
(d) |
Correlation-like coefficients:
If or is zero, is set to zero. |
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 scalar
-
Indicates the manner in which missing observations are to be treated.
- A case is excluded if it contains a missing value for any of the variables .
- A case is excluded if it contains a missing value for any of the variables specified in the array kvar.
- 5:
– 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 about zero, , for the variables specified in and , for and .
- 4:
– double array
-
is the correlation-like coefficient, , between the variables specified in and , for and .
- 5:
– int64int32nag_int scalar
-
The number of cases actually used in the calculations (when cases involving missing values have been eliminated).
- 6:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Errors or warnings detected by the function:
-
-
-
-
On entry, | , |
or | . |
-
-
On entry, | , |
or | , |
or | . |
-
-
On entry, | , |
or | for some . |
-
-
-
-
After observations with missing values were omitted, no cases remained.
-
-
After observations with missing values were omitted, only one case remained.
-
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_zero_subset_miss_case (g02bl) 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_zero_subset_miss_case (g02bl) 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_zero_subset_miss_case (g02bl) 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 are declared for the second and fourth variables; no missing values are specified for the first and third variables. 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 completely all cases containing missing values for these three selected variables; cases and are therefore eliminated, leaving only three cases in the calculations.
Open in the MATLAB editor:
g02bl_example
function g02bl_example
fprintf('g02bl 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(0); 1; 0; 1];
xmiss = [ 0; 0; 0; 0];
mistyp = int64(0);
kvar = [int64(4); 1; 2];
nvar = size(kvar,1);
[xbar, std, sspz, rz, ncases, ifail] = ...
g02bl( ...
x, miss, xmiss, mistyp, 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 about zero\n');
disp(sspz)
fprintf('Correlation-like coefficients\n');
disp(rz);
fprintf('Number of cases actually used = %d\n', ncases);
g02bl 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.0000 5.2915
1 2.6667 3.5119
2 4.0000 1.0000
Sums of squares and cross-products about zero
164 18 82
18 46 28
82 28 50
Correlation-like coefficients
1.0000 0.2072 0.9055
0.2072 1.0000 0.5838
0.9055 0.5838 1.0000
Number of cases actually used = 3
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015