NAG Library Routine Document

g02byf  (corrmat_partial)

 Contents

    1  Purpose
    7  Accuracy

1
Purpose

g02byf computes a partial correlation/variance-covariance matrix from a correlation or variance-covariance matrix computed by g02bxf.

2
Specification

Fortran Interface
Subroutine g02byf ( m, ny, nx, isz, r, ldr, p, ldp, wk, ifail)
Integer, Intent (In):: m, ny, nx, isz(m), ldr, ldp
Integer, Intent (Inout):: ifail
Real (Kind=nag_wp), Intent (In):: r(ldr,m)
Real (Kind=nag_wp), Intent (Inout):: p(ldp,ny)
Real (Kind=nag_wp), Intent (Out):: wk(ny*nx+nx*(nx+1)/2)
C Header Interface
#include nagmk26.h
void  g02byf_ ( const Integer *m, const Integer *ny, const Integer *nx, const Integer isz[], const double r[], const Integer *ldr, double p[], const Integer *ldp, double wk[], Integer *ifail)

3
Description

Partial correlation can be used to explore the association between pairs of random variables in the presence of other variables. For three variables, y1, y2 and x3, the partial correlation coefficient between y1 and y2 given x3 is computed as:
r12-r13r23 1-r1321-r232 ,  
where rij is the product-moment correlation coefficient between variables with subscripts i and j. The partial correlation coefficient is a measure of the linear association between y1 and y2 having eliminated the effect due to both y1 and y2 being linearly associated with x3. That is, it is a measure of association between y1 and y2 conditional upon fixed values of x3. Like the full correlation coefficients the partial correlation coefficient takes a value in the range (-1,1) with the value 0 indicating no association.
In general, let a set of variables be partitioned into two groups Y and X with ny variables in Y and nx variables in X and let the variance-covariance matrix of all ny+nx variables be partitioned into,
Σxx Σxy Σyx Σyy .  
The variance-covariance of Y conditional on fixed values of the X variables is given by:
Σyx=Σyy-ΣyxΣxx -1Σxy.  
The partial correlation matrix is then computed by standardizing Σyx,
diagΣyx -12ΣyxdiagΣyx -12.  
To test the hypothesis that a partial correlation is zero under the assumption that the data has an approximately Normal distribution a test similar to the test for the full correlation coefficient can be used. If r is the computed partial correlation coefficient then the appropriate t statistic is
rn-nx-2 1-r2 ,  
which has approximately a Student's t-distribution with n-nx-2 degrees of freedom, where n is the number of observations from which the full correlation coefficients were computed.

4
References

Krzanowski W J (1990) Principles of Multivariate Analysis Oxford University Press
Morrison D F (1967) Multivariate Statistical Methods McGraw–Hill
Osborn J F (1979) Statistical Exercises in Medical Research Blackwell
Snedecor G W and Cochran W G (1967) Statistical Methods Iowa State University Press

5
Arguments

1:     m – IntegerInput
On entry: the number of variables in the variance-covariance/correlation matrix given in r.
Constraint: m3.
2:     ny – IntegerInput
On entry: the number of Y variables, ny, for which partial correlation coefficients are to be computed.
Constraint: ny2.
3:     nx – IntegerInput
On entry: the number of X variables, nx, which are to be considered as fixed.
Constraints:
  • nx1;
  • ny+nxm.
4:     iszm – Integer arrayInput
On entry: indicates which variables belong to set X and Y.
iszi<0
The ith variable is a Y variable, for i=1,2,,m.
iszi>0
The ith variable is a X variable.
iszi=0
The ith variable is not included in the computations.
Constraints:
  • exactly ny elements of isz must be <0;
  • exactly nx elements of isz must be >0.
5:     rldrm – Real (Kind=nag_wp) arrayInput
On entry: the variance-covariance or correlation matrix for the m variables as given by g02bxf. Only the upper triangle need be given.
Note:  the matrix must be a full rank variance-covariance or correlation matrix and so be positive definite. This condition is not directly checked by the routine.
6:     ldr – IntegerInput
On entry: the first dimension of the array r as declared in the (sub)program from which g02byf is called.
Constraint: ldrm.
7:     pldpny – Real (Kind=nag_wp) arrayOutput
On exit: the strict upper triangle of p contains the strict upper triangular part of the ny by ny partial correlation matrix. The lower triangle contains the lower triangle of the ny by ny partial variance-covariance matrix if the matrix given in r is a variance-covariance matrix. If the matrix given in r is a partial correlation matrix then the variance-covariance matrix is for standardized variables.
8:     ldp – IntegerInput
On entry: the first dimension of the array p as declared in the (sub)program from which g02byf is called.
Constraint: ldpny.
9:     wkny×nx+nx×nx+1/2 – Real (Kind=nag_wp) arrayWorkspace
10:   ifail – IntegerInput/Output
On entry: ifail must be set to 0, -1​ or ​1. If you are unfamiliar with this argument you should refer to Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this argument, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6
Error Indicators and Warnings

If on entry ifail=0 or -1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
On entry, ldp=value ny=value.
Constraint: ldpny.
On entry, ldr=value and m=value.
Constraint: ldrm.
On entry, m=value.
Constraint: m>2.
On entry, nx=value.
Constraint: nx1.
On entry, ny=value, nx=value and m=value.
Constraint: ny+nxm.
On entry, ny=value.
Constraint: ny>1.
ifail=2
On entry, value values of isz are greater than zero and nx=value.
Constraint: exactly nx values of isz must be greater than zero.
On entry, value values of isz are less than zero and ny=value.
Constraint: exactly ny values of isz must be less than zero.
ifail=3
On entry, the correlation matrix of the independent variables is singular.
Try removing some of the X variables by setting the appropriate element of isz=0.
On entry, the square root of the correlation matrix of the independent variables is singular.
Try removing some of the X variables by setting the appropriate element of isz=0.
ifail=4
On entry, a diagonal element of the partial covariance matrix is zero.
Constraint: r must be positive definite.
On entry, a diagonal element of the partial covariance matrix is zero and an element of the partial correlation matrix is greater than one.
Constraint: r must be positive definite.
On entry, an element of the partial correlation matrix is greater than one.
Constraint: r must be positive definite.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.9 in How to Use the NAG Library and its Documentation for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.8 in How to Use the NAG Library and its Documentation for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 3.7 in How to Use the NAG Library and its Documentation for further information.

7
Accuracy

g02byf computes the partial variance-covariance matrix, Σyx, by computing the Cholesky factorization of Σxx. If Σxx is not of full rank the computation will fail. For a statement on the accuracy of the Cholesky factorization see f07gdf (dpptrf).

8
Parallelism and Performance

g02byf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
g02byf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9
Further Comments

Models that represent the linear associations given by partial correlations can be fitted using the multiple regression routine g02daf.

10
Example

Data, given by Osborn (1979), on the number of deaths, smoke (mg/m3) and sulphur dioxide (parts/million) during an intense period of fog is input. The correlations are computed using g02bxf and the partial correlation between deaths and smoke given sulphur dioxide is computed using g02byf. Both correlation matrices are printed using the routine x04caf.

10.1
Program Text

Program Text (g02byfe.f90)

10.2
Program Data

Program Data (g02byfe.d)

10.3
Program Results

Program Results (g02byfe.r)

© The Numerical Algorithms Group Ltd, Oxford, UK. 2017