NAG Library Routine Document

g02chf  (linregm_coeffs_noconst)

 Contents

    1  Purpose
    7  Accuracy

1
Purpose

g02chf performs a multiple linear regression with no constant on a set of variables whose sums of squares and cross-products about zero and correlation-like coefficients are given.

2
Specification

Fortran Interface
Subroutine g02chf ( n, k1, k, sspz, ldsspz, rz, ldrz, result, coef, ldcoef, rznv, ldrznv, cz, ldcz, wkz, ldwkz, ifail)
Integer, Intent (In):: n, k1, k, ldsspz, ldrz, ldcoef, ldrznv, ldcz, ldwkz
Integer, Intent (Inout):: ifail
Real (Kind=nag_wp), Intent (In):: sspz(ldsspz,k1)
Real (Kind=nag_wp), Intent (Inout):: rz(ldrz,k1), coef(ldcoef,3), rznv(ldrznv,k), cz(ldcz,k), wkz(ldwkz,k)
Real (Kind=nag_wp), Intent (Out):: result(13)
C Header Interface
#include nagmk26.h
void  g02chf_ ( const Integer *n, const Integer *k1, const Integer *k, const double sspz[], const Integer *ldsspz, double rz[], const Integer *ldrz, double result[], double coef[], const Integer *ldcoef, double rznv[], const Integer *ldrznv, double cz[], const Integer *ldcz, double wkz[], const Integer *ldwkz, Integer *ifail)

3
Description

g02chf fits a curve of the form
y=b1x1+b2x2++bkxk  
to the data points
x11,x21,,xk1,y1 x12,x22,,xk2,y2 x1n,x2n,,xkn,yn  
such that
yi=b1x1i+b2x2i++bkxki+ei,  i=1,2,,n.  
The routine calculates the regression coefficients, b1,b2,,bk, (and various other statistical quantities) by minimizing
i=1nei2.  
The actual data values x1i,x2i,,xki,yi are not provided as input to the routine. Instead, input to the routine consists of:
(i) The number of cases, n, on which the regression is based.
(ii) The total number of variables, dependent and independent, in the regression, k+1.
(iii) The number of independent variables in the regression, k.
(iv) The k+1 by k+1 matrix S~ij of sums of squares and cross-products about zero of all the variables in the regression; the terms involving the dependent variable, y, appear in the k+1th row and column.
(v) The k+1 by k+1 matrix R~ij of correlation-like coefficients for all the variables in the regression; the correlations involving the dependent variable, y, appear in the k+1th row and column.
The quantities calculated are:
(a) The inverse of the k by k partition of the matrix of correlation-like coefficients, R~ij, involving only the independent variables. The inverse is obtained using an accurate method which assumes that this sub-matrix is positive definite (see Section 9).
(b) The modified matrix, C=cij, where
cij=R~ijr~ijS~ij,  i,j=1,2,,k,  
where r~ij is the i,jth element of the inverse matrix of R~ij as described in (a) above. Each element of C is thus the corresponding element of the matrix of correlation-like coefficients multiplied by the corresponding element of the inverse of this matrix, divided by the corresponding element of the matrix of sums of squares and cross-products about zero.
(c) The regression coefficients:
bi=j=1kcijS~jk+1,  i=1,2,,k,  
where S~jk+1 is the sum of cross-products about zero for the independent variable xj and the dependent variable y.
(d) The sum of squares attributable to the regression, SSR, the sum of squares of deviations about the regression, SSD, and the total sum of squares, SST:
  • SST=S~k+1k+1, the sum of squares about zero for the dependent variable, y;
  • SSR=j=1kbjS~jk+1;  SSD=SST-SSR.
(e) The degrees of freedom attributable to the regression, DFR, the degrees of freedom of deviations about the regression, DFD, and the total degrees of freedom, DFT:
DFR=k;  DFD=n-k;  DFT=n.  
(f) The mean square attributable to the regression, MSR, and the mean square of deviations about the regression, MSD:
MSR=SSR/DFR;  MSD=SSD/DFD.  
(g) The F value for the analysis of variance:
F=MSR/MSD.  
(h) The standard error estimate:
s=MSD.  
(i) The coefficient of multiple correlation, R, the coefficient of multiple determination, R2, and the coefficient of multiple determination corrected for the degrees of freedom, R-2:
R=1-SSD SST ;  R2=1-SSD SST ;   R-2=1-SSD×DFT SST×DFD .  
(j) The standard error of the regression coefficients:
sebi=MSD×cii,   i= 1,2,,k.  
(k) The t values for the regression coefficients:
tbi=bi sebi ,  i=1,2,,k.  

4
References

Draper N R and Smith H (1985) Applied Regression Analysis (2nd Edition) Wiley

5
Arguments

1:     n – IntegerInput
On entry: n, the number of cases used in calculating the sums of squares and cross-products and correlation-like coefficients.
2:     k1 – IntegerInput
On entry: k+1, the total number of variables, independent and dependent, in the regression.
Constraint: k1=k+1.
3:     k – IntegerInput
On entry: k, the number of independent variables in the regression.
Constraint: 1kn-1.
4:     sspzldsspzk1 – Real (Kind=nag_wp) arrayInput
On entry: sspzij must be set to S~ij, the sum of cross-products about zero for the ith and jth variables, for i=1,2,,k+1 and j=1,2,,k+1; terms involving the dependent variable appear in row k+1 and column k+1.
5:     ldsspz – IntegerInput
On entry: the first dimension of the array sspz as declared in the (sub)program from which g02chf is called.
Constraint: ldsspzk1.
6:     rzldrzk1 – Real (Kind=nag_wp) arrayInput
On entry: rzij must be set to R~ij, the correlation-like coefficient for the ith and jth variables, for i=1,2,,k+1 and j=1,2,,k+1; coefficients involving the dependent variable appear in row k+1 and column k+1.
7:     ldrz – IntegerInput
On entry: the first dimension of the array rz as declared in the (sub)program from which g02chf is called.
Constraint: ldrzk1.
8:     result13 – Real (Kind=nag_wp) arrayOutput
On exit: the following information:
result1 SSR, the sum of squares attributable to the regression;
result2 DFR, the degrees of freedom attributable to the regression;
result3 MSR, the mean square attributable to the regression;
result4 F, the F value for the analysis of variance;
result5 SSD, the sum of squares of deviations about the regression;
result6 DFD, the degrees of freedom of deviations about the regression;
result7 MSD, the mean square of deviations about the regression;
result8 SST, the total sum of squares;
result9 DFT, the total degrees of freedom;
result10 s, the standard error estimate;
result11 R, the coefficient of multiple correlation;
result12 R2, the coefficient of multiple determination;
result13 R-2, the coefficient of multiple determination corrected for the degrees of freedom.
9:     coefldcoef3 – Real (Kind=nag_wp) arrayOutput
On exit: for i=1,2,,k, the following information:
coefi1
bi, the regression coefficient for the ith variable.
coefi2
sebi, the standard error of the regression coefficient for the ith variable.
coefi3
tbi, the t value of the regression coefficient for the ith variable.
10:   ldcoef – IntegerInput
On entry: the first dimension of the array coef as declared in the (sub)program from which g02chf is called.
Constraint: ldcoefk.
11:   rznvldrznvk – Real (Kind=nag_wp) arrayOutput
On exit: the inverse of the matrix of correlation-like coefficients for the independent variables; that is, the inverse of the matrix consisting of the first k rows and columns of rz.
12:   ldrznv – IntegerInput
On entry: the first dimension of the array rznv as declared in the (sub)program from which g02chf is called.
Constraint: ldrznvk.
13:   czldczk – Real (Kind=nag_wp) arrayOutput
On exit: the modified inverse matrix, C, where
czij=rzij×rznvij sspzij ,  i,j=1,2,,k.  
14:   ldcz – IntegerInput
On entry: the first dimension of the array cz as declared in the (sub)program from which g02chf is called.
Constraint: ldczk.
15:   wkzldwkzk – Real (Kind=nag_wp) arrayWorkspace
16:   ldwkz – IntegerInput
On entry: the first dimension of the array wkz as declared in the (sub)program from which g02chf is called.
Constraint: ldwkzk.
17:   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, k=value.
Constraint: k1.
ifail=2
On entry, k1=value and k=value.
Constraint: k1=k+1.
ifail=3
On entry, n=value and k=value.
Constraint: nk+1.
ifail=4
On entry, ldcoef=value and k=value.
Constraint: ldcoefk.
On entry, ldcz=value and k=value.
Constraint: ldczk.
On entry, ldrz=value and k=value.
Constraint: ldrzk+1.
On entry, ldrznv=value and k=value.
Constraint: ldrznvk.
On entry, ldsspz=value and k=value.
Constraint: ldsspzk+1 
On entry, ldwkz=value and k=value.
Constraint: ldwkzk.
ifail=5
The K by K partition of rz which requires inversion is not positive definite.
ifail=6
The refinement following the actual inversion has failed. This indicates that the k by k partition of the matrix held in rz, which is to be inverted, is ill-conditioned. The use of g02daf, which employs a different numerical technique, may avoid the difficulty.
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

The accuracy of g02chf is almost entirely dependent on the accuracy of the matrix inversion method used. As g02chf works with the matrix of correlation coefficients rather than that of the sums of squares and cross-products of deviations from means all terms in the matrix being inverted are of a similar order and therefore the scope for computational error is reduced. An alternative, and potentially more numerically reliable, routine is g02daf. g02daf works directly with the data matrix and therefore avoids explicitly performing a matrix inversion. However, g02daf does not handle missing values, nor does it provide the same output as this routine.
If, in calculating F or any of the tbi  (see Section 3), the numbers involved are such that the result would be outside the range of numbers which can be stored by the machine, then the answer is set to the largest quantity which can be stored as a real variable, by means of a call to x02alf.

8
Parallelism and Performance

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

The time taken by g02chf depends on k.
This routine assumes that the matrix of correlation-like coefficients for the independent variables in the regression is positive definite; it fails if this is not the case.
This correlation matrix will in fact be positive definite whenever the correlation-like matrix and the sums of squares and cross-products (about zero) matrix have been formed either without regard to missing values, or by eliminating completely any cases involving missing values for any variable. If, however, these matrices are formed by eliminating cases with missing values from only those calculations involving the variables for which the values are missing, no such statement can be made, and the correlation-like matrix may or may not be positive definite. You should be aware of the possible dangers of using correlation matrices formed in this way (see the G02 Chapter Introduction), but if they nevertheless wish to carry out regressions using such matrices, this routine is capable of handling the inversion of such matrices, provided they are positive definite.
If a matrix is positive definite, its subsequent re-organisation by either of g02cef or g02cff will not affect this property and the new matrix can safely be used in this routine. Thus correlation matrices produced by any of g02bdf, g02bef, g02bkf or g02blf, even if subsequently modified by either g02cef or g02cff, can be handled by this routine.
It should be noted that the routine requires the dependent variable to be the last of the k+1 variables whose statistics are provided as input to the routine. If this variable is not correctly positioned in the original data, the means, standard deviations, sums of squares and cross-products about zero, and correlation-like coefficients can be manipulated by using g02cef or g02cff to reorder the variables as necessary.

10
Example

This example reads in the sums of squares and cross-products about zero, and correlation-like coefficients for three variables. A multiple linear regression with no constant is then performed with the third and final variable as the dependent variable. Finally the results are printed.

10.1
Program Text

Program Text (g02chfe.f90)

10.2
Program Data

Program Data (g02chfe.d)

10.3
Program Results

Program Results (g02chfe.r)

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