hide long namesshow long names
hide short namesshow short names
Integer type:  int32  int64  nag_int  show int32  show int32  show int64  show int64  show nag_int  show nag_int

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

NAG Toolbox: nag_correg_linregm_coeffs_const (g02cg)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_correg_linregm_coeffs_const (g02cg) performs a multiple linear regression on a set of variables whose means, sums of squares and cross-products of deviations from means, and Pearson product-moment correlation coefficients are given.

Syntax

[result, coef, con, rinv, c, ifail] = g02cg(n, xbar, ssp, r, 'k1', k1)
[result, coef, con, rinv, c, ifail] = nag_correg_linregm_coeffs_const(n, xbar, ssp, r, 'k1', k1)
Note: the interface to this routine has changed since earlier releases of the toolbox:
At Mark 23: k was removed from the interface

Description

nag_correg_linregm_coeffs_const (g02cg) fits a curve of the form
y=a+b1x1+b2x2++bkxk  
to the data points
x11,x21,,xk1,y1 x12,x22,,xk2,y2 x1n,x2n,,xkn,yn  
such that
yi=a+b1x1i+b2x2i++bkxki+ei,  i=1,2,,n.  
The function calculates the regression coefficients, b1,b2,,bk, the regression constant, a, and various other statistical quantities by minimizing
i=1nei2.  
The actual data values x1i,x2i,,xki,yi are not provided as input to the function. Instead, input 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 means of all k+1 variables in the regression, both the independent variables x1,x2,,xk and the dependent variable y, which is the k+1th variable: i.e., x-1,x-2,,x-k,y-.
(v) The k+1 by k+1 matrix [Sij] of sums of squares and cross-products of deviations from means of all the variables in the regression; the terms involving the dependent variable, y, appear in the k+1th row and column.
(vi) The k+1 by k+1 matrix [Rij] of the Pearson product-moment correlation 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 coefficients, [Rij], involving only the independent variables. The inverse is obtained using an accurate method which assumes that this sub-matrix is positive definite.
(b) The modified inverse matrix, C=cij, where
cij=RijrijSij,  i,j=1,2,,k,  
where rij is the i,jth element of the inverse matrix of [Rij] as described in (a) above. Each element of C is thus the corresponding element of the matrix of correlation 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 of deviations from means.
(c) The regression coefficients:
bi=j=ikcijSjk+1,  i=1,2,,k,  
where Sjk+1 is the sum of cross-products of deviations from means 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=Sk+1k+1, the sum of squares of deviations from the mean for the dependent variable, y;
  • SSR=j=1kbjSjk+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-1;  DFT=n-1.  
(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 values 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.  
(l) The regression constant, a, its standard error, sea, and its t value, ta:
a=y--i=1kbix-i;  sea=MSD×1n+i=1kj=1kx-icijx-j ;  ta=asea .  

References

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

Parameters

Compulsory Input Parameters

1:     n int64int32nag_int scalar
The number of cases n, used in calculating the sums of squares and cross-products and correlation coefficients.
2:     xbark1 – double array
xbari must be set to x-i, the mean value of the ith variable, for i=1,2,,k+1; the mean of the dependent variable must be contained in xbark+1.
3:     sspldsspk1 – double array
ldssp, the first dimension of the array, must satisfy the constraint ldsspk1.
sspij must be set to Sij, the sum of cross-products of deviations from means 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.
4:     rldrk1 – double array
ldr, the first dimension of the array, must satisfy the constraint ldrk1.
rij must be set to Rij, the Pearson product-moment correlation coefficient 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.

Optional Input Parameters

1:     k1 int64int32nag_int scalar
Default: the dimension of the array xbar and the first dimension of the arrays ssp, r and the second dimension of the arrays ssp, r. (An error is raised if these dimensions are not equal.)
The total number of variables, independent and dependent, k+1, in the regression.
Constraint: 2k1<n.

Output Parameters

1:     result13 – double array
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.
2:     coefldcoef3 – double array
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.
3:     con3 – double array
The following information:
con1 a, the regression constant;
con2 sea, the standard error of the regression constant;
con3 ta, the t value for the regression constant.
4:     rinvldrinvk – double array
k=k1-1.
The inverse of the matrix of correlation coefficients for the independent variables; that is, the inverse of the matrix consisting of the first k rows and columns of r.
5:     cldck – double array
k=k1-1.
The modified inverse matrix, where
  • cij=rij×rinvij/sspij, for i=1,2,,k and j=1,2,,k.
6:     ifail int64int32nag_int scalar
ifail=0 unless the function detects an error (see Error Indicators and Warnings).

Error Indicators and Warnings

Errors or warnings detected by the function:
   ifail=1
On entry,k1<2.
   ifail=2
On entry,k1k+1.
   ifail=3
On entry,nk1.
   ifail=4
On entry,ldssp<k1,
orldr<k1,
orldcoef<k,
orldrinv<k,
orldc<k,
orldwkz<k.
   ifail=5
The k by k partition of the matrix R which is to be inverted is not positive definite.
   ifail=6
The refinement following the actual inversion fails, indicating that the k by k partition of the matrix R, which is to be inverted, is ill-conditioned. The use of nag_correg_linregm_fit (g02da), which employs a different numerical technique, may avoid this difficulty (an extra ‘variable’ representing the constant term must be introduced for nag_correg_linregm_fit (g02da)).
   ifail=7
   ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
   ifail=-399
Your licence key may have expired or may not have been installed correctly.
   ifail=-999
Dynamic memory allocation failed.

Accuracy

The accuracy of any regression function is almost entirely dependent on the accuracy of the matrix inversion method used. In nag_correg_linregm_coeffs_const (g02cg), it is the matrix of correlation coefficients rather than that of the sums of squares and cross-products of deviations from means that is inverted; this means that all terms in the matrix for inversion are of a similar order, and reduces the scope for computational error. For details on absolute accuracy, the relevant section of the document describing the inversion function used, nag_linsys_real_posdef_solve_ref (f04ab), should be consulted. nag_correg_linregm_fit (g02da) uses a different method, based on nag_linsys_real_gen_lsqsol (f04am), and that function may well prove more reliable numerically. It does not handle missing values, nor does it provide the same output as this function. (In particular it is necessary to include explicitly the constant in the regression equation as another ‘variable’.)
If, in calculating F, ta, or any of the tbi  (see Description), 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 double variable, by means of a call to nag_machine_real_largest (x02al).

Further Comments

The time taken by nag_correg_linregm_coeffs_const (g02cg) depends on k.
This function assumes that the matrix of correlation 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 matrix and the sums of squares and cross-products (of deviations from means) 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 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 regression using such matrices, this function 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 nag_correg_linregm_service_select (g02ce) or nag_correg_linregm_service_reorder (g02cf) will not affect this property, and the new matrix can safely be used in this function. Thus correlation matrices produced by any of nag_correg_coeffs_pearson (g02ba), nag_correg_coeffs_pearson_miss_case (g02bb), nag_correg_coeffs_pearson_subset (g02bg) or nag_correg_coeffs_pearson_subset_miss_case (g02bh), even if subsequently modified by either nag_correg_linregm_service_select (g02ce) or nag_correg_linregm_service_reorder (g02cf), can be handled by this function.
It should be noted that in forming the sums of squares and cross-products matrix and the correlation matrix a column of constants should not be added to the data as an additional ‘variable’ in order to obtain a constant term in the regression. This function automatically calculates the regression constant, a, and any attempt to insert such a ‘dummy variable’ is likely to cause the function to fail.
It should also be noted that the function requires the dependent variable to be the last of the k+1 variables whose statistics are provided as input to the function. If this variable is not correctly positioned in the original data, the means, standard deviations, sums of squares and cross-products of deviations from means, and correlation coefficients can be manipulated by using nag_correg_linregm_service_select (g02ce) or nag_correg_linregm_service_reorder (g02cf) to reorder the variables as necessary.

Example

This example reads in the means, sums of squares and cross-products of deviations from means, and correlation coefficients for three variables. A multiple linear regression is then performed with the third and final variable as the dependent variable. Finally the results are printed.
function g02cg_example


fprintf('g02cg example results\n\n');

% Data
n    = int64(5);
k    = 2;
xbar = [  5.4;     5.8;      2.8];
ssp  = [ 99.2,   -57.6,      6.4;
        -57.6,   102.8,    -29.2;
          6.4,   -29.2,     14.8   ];
r    = [  1,     -0.5704,    0.167;
         -0.5704, 1,        -0.7486;
          0.167, -0.7486,    1     ];
% Reordering
korder = [int64(1); 3; 2];

% Display data
disp('Means:');
disp(xbar);
disp('Sums of squares and cross-products about means:');
disp(ssp);
disp('Correlation coefficients:');
disp(r);

% Fit multiple linear regression model
[result, coeff, con, rinv, c, ifail] = ...
  g02cg(n, xbar, ssp, r);

% Display results
fprintf('  Variable    Coef      Std err  t-value\n');
disp([[1:k]' coeff]);
  
fprintf('Analysis of regression table :-\n\n');
fprintf('      Source        Sum of squares  DF   Mean square   F-value\n');
fprintf('Due to regression %11.3f%8d%13.3f%12.3f\n', result(1:4));
fprintf('About  regression %11.3f%8d%13.3f\n', result(5:7));
fprintf('Total             %11.3f%8d\n\n', result(8:9));
fprintf('Standard error of estimate = %8.4f\n', result(10));
fprintf('Multiple correlation (R)   = %8.4f\n', result(11));
fprintf('Determination (R squared)  = %8.4f\n', result(12));
fprintf('Corrected R squared        = %8.4f\n\n', result(13));

disp('Inverse of correlation matrix of independent variables:');
disp(rinv);
disp('Modified inverse matrix:');
disp(c);


g02cg example results

Means:
    5.4000
    5.8000
    2.8000

Sums of squares and cross-products about means:
   99.2000  -57.6000    6.4000
  -57.6000  102.8000  -29.2000
    6.4000  -29.2000   14.8000

Correlation coefficients:
    1.0000   -0.5704    0.1670
   -0.5704    1.0000   -0.7486
    0.1670   -0.7486    1.0000

  Variable    Coef      Std err  t-value
    1.0000   -0.1488    0.1937   -0.7683
    2.0000   -0.3674    0.1903   -1.9309

Analysis of regression table :-

      Source        Sum of squares  DF   Mean square   F-value
Due to regression       9.777       2        4.888       1.946
About  regression       5.023       2        2.512
Total                  14.800       4

Standard error of estimate =   1.5848
Multiple correlation (R)   =   0.8128
Determination (R squared)  =   0.6606
Corrected R squared        =   0.3212

Inverse of correlation matrix of independent variables:
    1.4823    0.8455
    0.8455    1.4823

Modified inverse matrix:
    0.0149    0.0084
    0.0084    0.0144


PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015