PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_correg_linregs_noconst_miss (g02cd)
Purpose
nag_correg_linregs_noconst_miss (g02cd) performs a simple linear regression with no constant, with dependent variable and independent variable , omitting cases involving missing values.
Syntax
Description
nag_correg_linregs_noconst_miss (g02cd) fits a straight line of the form
to those of the data points
that do not include missing values, such that
for those
, for
which do not include missing values.
The function eliminates all pairs of observations which contain a missing value for either or , and then calculates the regression coefficient, , and various other statistical quantities by minimizing the sum of the over those cases remaining in the calculations.
The input data consists of the pairs of observations on the independent variable and the dependent variable .
In addition two values,
and
, are given which are considered to represent missing observations for
and
respectively. (See
Accuracy).
Let , if the th observation of either or is missing, i.e., if and/or ; and otherwise, for .
The quantities calculated are:
(a) |
Means:
|
(b) |
Standard deviations:
|
(c) |
Pearson product-moment correlation coefficient:
|
(d) |
The regression coefficient, :
|
(e) |
The sum of squares attributable to the regression, , the sum of squares of deviations about the regression, , and the total sum of squares, :
|
(f) |
The degrees of freedom attributable to the regression, , the degrees of freedom of deviations about the regression, , and the total degrees of freedom, :
|
(g) |
The mean square attributable to the regression, , and the mean square of deviations about the regression, :
|
(h) |
The value for the analysis of variance:
|
(i) |
The standard error of the regression coefficient:
|
(j) |
The value for the regression coefficient:
|
(k) |
The number of observations used in the calculations:
|
References
Draper N R and Smith H (1985) Applied Regression Analysis (2nd Edition) Wiley
Parameters
Compulsory Input Parameters
- 1:
– double array
-
must contain , for .
- 2:
– double array
-
must contain , for .
- 3:
– double scalar
-
The value
, which is to be taken as the missing value for the variable
(see
Accuracy).
- 4:
– double scalar
-
The value
, which is to be taken as the missing value for the variable
(see
Accuracy).
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the dimension of the arrays
x,
y. (An error is raised if these dimensions are not equal.)
, the number of pairs of observations.
Constraint:
.
Output Parameters
- 1:
– double array
-
The following information:
| , the mean value of the independent variable, ; |
| , the mean value of the dependent variable, ; |
| , the standard deviation of the independent variable, ; |
| , the standard deviation of the dependent variable, ; |
| , the Pearson product-moment correlation between the independent variable and the dependent variable, ; |
| , the regression coefficient; |
| the value ; |
| , the standard error of the regression coefficient; |
| the value ; |
| , the value for the regression coefficient; |
| the value ; |
| , the sum of squares attributable to the regression; |
| , the degrees of freedom attributable to the regression; |
| , the mean square attributable to the regression; |
| , the value for the analysis of variance; |
| , the sum of squares of deviations about the regression; |
| , the degrees of freedom of deviations about the regression; |
| , the mean square of deviations about the regression; |
| , the total sum of squares |
| , the total degrees of freedom; |
| , the number of observations used in the calculations. |
- 2:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Errors or warnings detected by the function:
-
-
-
-
After observations with missing values were omitted, fewer than two cases remained.
-
-
After observations with missing values were omitted, all remaining values of at least one of the variables and were identical.
-
An unexpected error has been triggered by this routine. Please
contact
NAG.
-
Your licence key may have expired or may not have been installed correctly.
-
Dynamic memory allocation failed.
Accuracy
nag_correg_linregs_noconst_miss (g02cd) 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.
nag_correg_linregs_noconst_miss (g02cd) 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.
If, in calculating
or
(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_linregs_noconst_miss (g02cd) depends on and the number of missing observations.
The function uses a two-pass algorithm.
Example
This example reads in eight observations on each of two variables, and then performs a simple linear regression with no constant, with the first variable as the independent variable, and the second variable as the dependent variable, omitting cases involving missing values ( for the first variable, for the second). Finally the results are printed.
Open in the MATLAB editor:
g02cd_example
function g02cd_example
fprintf('g02cd example results\n\n');
x = [ 1.0 0.0 4.0 7.5 2.5 0.0 10.0 5.0];
y = [20.0 15.5 28.3 45.0 24.5 10.0 99.0 31.2];
n = numel(x);
fprintf(' i independent(x) dependent(y)\n');
fprintf('%3d%14.4f%14.4f\n',[1:n; x; y]);
xmiss = 0;
ymiss = 99;
[result, ifail] = g02cd( ...
x, y, xmiss, ymiss);
fprintf('\n');
fprintf('Mean of independent variable = %8.4f\n', result(1));
fprintf('Mean of dependent variable = %8.4f\n', result(2));
fprintf('Standard deviation of independent variable = %8.4f\n', result(3));
fprintf('Standard deviation of dependent variable = %8.4f\n', result(4));
fprintf('Correlation coefficient = %8.4f\n', result(5));
fprintf('\n');
fprintf('Regression coefficient = %8.4f\n', result(6));
fprintf('Standard error of coefficient = %8.4f\n', result(8));
fprintf('t-value for coefficient = %8.4f\n', result(10));
fprintf('\nAnalysis of regression table :-\n\n');
fprintf(' Source Sum of squares D.F. Mean square F-value\n');
fprintf('Due to regression %11.3f%8d%14.3f%14.3f\n', result(12:15));
fprintf('About regression %11.3f%8d%14.3f\n', result(16:18));
fprintf('Total %11.3f%8d\n', result(19:20));
fprintf('\nNumber of cases actually used = %d\n', result(21));
g02cd example results
i independent(x) dependent(y)
1 1.0000 20.0000
2 0.0000 15.5000
3 4.0000 28.3000
4 7.5000 45.0000
5 2.5000 24.5000
6 0.0000 10.0000
7 10.0000 99.0000
8 5.0000 31.2000
Mean of independent variable = 4.0000
Mean of dependent variable = 29.8000
Standard deviation of independent variable = 2.4749
Standard deviation of dependent variable = 9.4787
Correlation coefficient = 0.9799
Regression coefficient = 6.5833
Standard error of coefficient = 0.8046
t-value for coefficient = 8.1816
Analysis of regression table :-
Source Sum of squares D.F. Mean square F-value
Due to regression 4528.949 1 4528.949 66.939
About regression 270.631 4 67.658
Total 4799.580 5
Number of cases actually used = 5
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015