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
C# |
---|
public static void g02bj( int n, int m, double[,] x, int[] miss, double[] xmiss, int nvars, int[] kvar, double[] xbar, double[] std, double[,] ssp, double[,] r, out int ncases, double[,] cnt, out int ifail ) |
Visual Basic |
---|
Public Shared Sub g02bj ( _ n As Integer, _ m As Integer, _ x As Double(,), _ miss As Integer(), _ xmiss As Double(), _ nvars As Integer, _ kvar As Integer(), _ xbar As Double(), _ std As Double(), _ ssp As Double(,), _ r As Double(,), _ <OutAttribute> ByRef ncases As Integer, _ cnt As Double(,), _ <OutAttribute> ByRef ifail As Integer _ ) |
Visual C++ |
---|
public: static void g02bj( int n, int m, array<double,2>^ x, array<int>^ miss, array<double>^ xmiss, int nvars, array<int>^ kvar, array<double>^ xbar, array<double>^ std, array<double,2>^ ssp, array<double,2>^ r, [OutAttribute] int% ncases, array<double,2>^ cnt, [OutAttribute] int% ifail ) |
F# |
---|
static member g02bj : n : int * m : int * x : float[,] * miss : int[] * xmiss : float[] * nvars : int * kvar : int[] * xbar : float[] * std : float[] * ssp : float[,] * r : float[,] * ncases : int byref * cnt : float[,] * ifail : int byref -> unit |
Parameters
- n
- Type: System..::..Int32On entry: , the number of observations or cases.Constraint: .
- m
- Type: System..::..Int32On entry: , the number of variables.Constraint: .
- x
- Type: array<System..::..Double,2>[,](,)[,][,]An array of size [dim1, m]Note: dim1 must satisfy the constraint:On entry: must be set to , the value of the th observation on the th variable, for and .
- miss
- Type: array<System..::..Int32>[]()[][]An array of size [m]
- xmiss
- Type: array<System..::..Double>[]()[][]An array of size [m]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 [Accuracy]).
- nvars
- Type: System..::..Int32On entry: , the number of variables for which information is required.Constraint: .
- kvar
- Type: array<System..::..Int32>[]()[][]An array of size [nvars]On entry: must be set to the column number in x of the th variable for which information is required, for .Constraint: , for .
- xbar
- Type: array<System..::..Double>[]()[][]An array of size [nvars]On exit: the mean value, , of the variable specified in , for .
- std
- Type: array<System..::..Double>[]()[][]An array of size [nvars]On exit: the standard deviation, , of the variable specified in , for .
- ssp
- Type: array<System..::..Double,2>[,](,)[,][,]An array of size [dim1, nvars]Note: dim1 must satisfy the constraint:On exit: is the cross-product of deviations, , for the variables specified in and , for and .
- r
- Type: array<System..::..Double,2>[,](,)[,][,]An array of size [dim1, nvars]Note: dim1 must satisfy the constraint:On exit: is the product-moment correlation coefficient, , between the variables specified in and , for and .
- ncases
- Type: System..::..Int32%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).
- cnt
- Type: array<System..::..Double,2>[,](,)[,][,]An array of size [dim1, nvars]Note: dim1 must satisfy the constraint:On exit: 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 .
- ifail
- Type: System..::..Int32%On exit: unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).
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:
|
||||
(d) | Pearson product-moment correlation coefficients:
If or is zero, is set to zero. |
||||
(e) | The number of cases used in the calculation of each of the correlation coefficients:
|
References
None.
Error Indicators and Warnings
Note: g02bj may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the method:
Some error messages may refer to parameters that are dropped from this interface
(LDX, LDSSP, LDR, LDCNT) In these
cases, an error in another parameter has usually caused an incorrect value to be inferred.
On entry, .
On entry, , or .
On entry, , or for some .
- 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 method even if .
Accuracy
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. 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.
Parallelism and Performance
None.
Further Comments
The time taken by g02bj depends on and , and the occurrence of missing values.
The method 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.
Example program (C#): g02bje.cs