g02be 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 completely any cases with a missing observation for any variable.
Syntax
C# |
---|
public static void g02be( int n, int m, double[,] x, int[] miss, double[] xmiss, double[] xbar, double[] std, double[,] sspz, double[,] rz, out int ncases, out int ifail ) |
Visual Basic |
---|
Public Shared Sub g02be ( _ n As Integer, _ m As Integer, _ x As Double(,), _ miss As Integer(), _ xmiss As Double(), _ xbar As Double(), _ std As Double(), _ sspz As Double(,), _ rz As Double(,), _ <OutAttribute> ByRef ncases As Integer, _ <OutAttribute> ByRef ifail As Integer _ ) |
Visual C++ |
---|
public: static void g02be( int n, int m, array<double,2>^ x, array<int>^ miss, array<double>^ xmiss, array<double>^ xbar, array<double>^ std, array<double,2>^ sspz, array<double,2>^ rz, [OutAttribute] int% ncases, [OutAttribute] int% ifail ) |
F# |
---|
static member g02be : n : int * m : int * x : float[,] * miss : int[] * xmiss : float[] * xbar : float[] * std : float[] * sspz : float[,] * rz : float[,] * ncases : int byref * 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]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.On exit: the array miss is overwritten by the method, and the information it contained on entry is lost.
- 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]).On exit: the array xmiss is overwritten by the method, and the information it contained on entry is lost.
- xbar
- Type: array<System..::..Double>[]()[][]An array of size [m]On exit: the mean value, , of the th variable, for .
- std
- Type: array<System..::..Double>[]()[][]An array of size [m]On exit: the standard deviation, , of the th variable, for .
- sspz
- Type: array<System..::..Double,2>[,](,)[,][,]An array of size [dim1, m]Note: dim1 must satisfy the constraint:On exit: is the cross-product about zero, , for and .
- rz
- Type: array<System..::..Double,2>[,](,)[,][,]An array of size [dim1, m]Note: dim1 must satisfy the constraint:On exit: is the correlation-like coefficient, , between the th and th variables, for and .
- ncases
- Type: System..::..Int32%On exit: the number of cases actually used in the calculations (when cases involving missing values have been eliminated).
- 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. 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 observation contains a missing value for any of those variables 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:
|
References
None.
Error Indicators and Warnings
Errors or warnings detected by the method:
Some error messages may refer to parameters that are dropped from this interface
(LDX, LDSSPZ, LDRZ) In these
cases, an error in another parameter has usually caused an incorrect value to be inferred.
On entry, .
On entry, .
- After observations with missing values were omitted, no cases remained.
- After observations with missing values were omitted, only one case remained.
Accuracy
g02be 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. g02be 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 g02be 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 three variables. Missing values of are declared for the first and third variables; no missing value is specified for the second variable. 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 completely all cases containing missing values; cases and are therefore eliminated, leaving only three cases in the calculations.
Example program (C#): g02bee.cs