NAG Library Routine Document

g02baf (coeffs_pearson)

 Contents

    1  Purpose
    7  Accuracy

1
Purpose

g02baf computes means and standard deviations of variables, sums of squares and cross-products of deviations from means, and Pearson product-moment correlation coefficients for a set of data.

2
Specification

Fortran Interface
Subroutine g02baf ( n, m, x, ldx, xbar, std, ssp, ldssp, r, ldr, ifail)
Integer, Intent (In):: n, m, ldx, ldssp, ldr
Integer, Intent (Inout):: ifail
Real (Kind=nag_wp), Intent (In):: x(ldx,m)
Real (Kind=nag_wp), Intent (Inout):: ssp(ldssp,m), r(ldr,m)
Real (Kind=nag_wp), Intent (Out):: xbar(m), std(m)
C Header Interface
#include nagmk26.h
void  g02baf_ (const Integer *n, const Integer *m, const double x[], const Integer *ldx, double xbar[], double std[], double ssp[], const Integer *ldssp, double r[], const Integer *ldr, Integer *ifail)

3
Description

The input data consist of n observations for each of m variables, given as an array
xij,  i=1,2,,nn2,j=1,2,,mm2,  
where xij is the ith observation on the jth variable.
The quantities calculated are:
(a) Means:
x-j=1ni=1nxij,  j=1,2,,m.  
(b) Standard deviations:
sj=1n- 1 i= 1n xij-x-j 2,   j= 1,2,,m.  
(c) Sums of squares and cross-products of deviations from means:
Sjk=i=1n xij-x-j xik-x-k ,  j,k=1,2,,m.  
(d) Pearson product-moment correlation coefficients:
Rjk=SjkSjjSkk ,   j,k= 1,2,,m.  
If Sjj or Skk is zero, Rjk is set to zero.

4
References

None.

5
Arguments

1:     n – IntegerInput
On entry: n, the number of observations or cases.
Constraint: n2.
2:     m – IntegerInput
On entry: m, the number of variables.
Constraint: m2.
3:     xldxm – Real (Kind=nag_wp) arrayInput
On entry: xij must be set to xij, the ith observation on the jth variable, for i=1,2,,n and j=1,2,,m.
4:     ldx – IntegerInput
On entry: the first dimension of the array x as declared in the (sub)program from which g02baf is called.
Constraint: ldxn.
5:     xbarm – Real (Kind=nag_wp) arrayOutput
On exit: the mean value, x-j, of the jth variable, for j=1,2,,m.
6:     stdm – Real (Kind=nag_wp) arrayOutput
On exit: the standard deviation, sj, of the jth variable, for j=1,2,,m.
7:     sspldsspm – Real (Kind=nag_wp) arrayOutput
On exit: sspjk is the cross-product of deviations Sjk, for j=1,2,,m and k=1,2,,m.
8:     ldssp – IntegerInput
On entry: the first dimension of the array ssp as declared in the (sub)program from which g02baf is called.
Constraint: ldsspm.
9:     rldrm – Real (Kind=nag_wp) arrayOutput
On exit: rjk is the product-moment correlation coefficient Rjk between the jth and kth variables, for j=1,2,,m and k=1,2,,m.
10:   ldr – IntegerInput
On entry: the first dimension of the array r as declared in the (sub)program from which g02baf is called.
Constraint: ldrm.
11:   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, n=value.
Constraint: n2.
ifail=2
On entry, m=value.
Constraint: m2.
ifail=3
On entry, ldr=value and m=value.
Constraint: ldrm.
On entry, ldssp=value and m=value.
Constraint: ldsspm.
On entry, ldx=value and n=value.
Constraint: ldxn.
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

g02baf does not use additional precision arithmetic for the accumulation of scalar products, so there may be a loss of significant figures for large n.

8
Parallelism and Performance

g02baf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
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

The time taken by g02baf depends on n and m.
The routine uses a two-pass algorithm.

10
Example

This example reads in a set of data consisting of five observations on each of three variables. The means, standard deviations, sums of squares and cross-products of deviations from means, and Pearson product-moment correlation coefficients for all three variables are then calculated and printed.

10.1
Program Text

Program Text (g02bafe.f90)

10.2
Program Data

Program Data (g02bafe.d)

10.3
Program Results

Program Results (g02bafe.r)

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