1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2005 Free Software Foundation, Inc. Written by Jason H. Stover.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #include <gsl/gsl_math.h>
21 #include <gsl/gsl_vector.h>
22 #include <gsl/gsl_matrix.h>
23 #include <src/math/coefficient.h>
27 PSPP_LINREG_CONDITIONAL_INVERSE,
35 Options describing what special values should be computed.
37 struct pspp_linreg_opts_struct
39 int get_depvar_mean_std;
40 int *get_indep_mean_std; /* Array of booleans
42 independent variables need
43 their means and standard
44 deviations computed within
45 pspp_linreg. This array
47 n_indeps. If element i is
50 variance of indpendent
51 variable i. If element i
52 is 0, it will not compute
54 deviation, and assume the
56 cache->indep_mean[i] is
58 cache->indep_std[i] is the
59 sample standard deviation. */
61 typedef struct pspp_linreg_opts_struct pspp_linreg_opts;
65 Find the least-squares estimate of b for the linear model:
69 where Y is an n-by-1 column vector, X is an n-by-p matrix of
70 independent variables, b is a p-by-1 vector of regression coefficients,
71 and Z is an n-by-1 normally-distributed random vector with independent
72 identically distributed components with mean 0.
74 This estimate is found via the sweep operator or singular-value
75 decomposition with gsl.
80 1. Matrix Computations, third edition. GH Golub and CF Van Loan.
81 The Johns Hopkins University Press. 1996. ISBN 0-8018-5414-8.
83 2. Numerical Analysis for Statisticians. K Lange. Springer. 1999.
86 3. Numerical Linear Algebra for Applications in Statistics. JE Gentle.
87 Springer. 1998. ISBN 0-387-98542-5.
91 struct pspp_linreg_cache_struct
93 int n_obs; /* Number of observations. */
94 int n_indeps; /* Number of independent variables. */
95 int n_coeffs; /* The intercept is not considered a
99 Pointers to the variables.
101 const struct variable *depvar;
102 const struct variable **indep_vars;
104 gsl_vector *residuals;
105 struct pspp_coeff **coeff;
107 int method; /* Method to use to estimate parameters. */
109 Means and standard deviations of the variables.
110 If these pointers are null when pspp_linreg() is
111 called, pspp_linreg() will compute their values.
113 Entry i of indep_means is the mean of independent
114 variable i, whose observations are stored in the ith
115 column of the design matrix.
119 gsl_vector *indep_means;
120 gsl_vector *indep_std;
125 double ssm; /* Sums of squares for the overall model. */
126 gsl_vector *ss_indeps; /* Sums of squares from each
127 independent variable. */
128 double sst; /* Sum of squares total. */
129 double sse; /* Sum of squares error. */
130 double mse; /* Mean squared error. This is just sse /
131 dfe, but since it is the best unbiased
132 estimate of the population variance, it
133 has its own entry here. */
134 gsl_vector *ssx; /* Centered sums of squares for independent
135 variables, i.e. \sum (x[i] - mean(x))^2. */
136 double ssy; /* Centered sums of squares for dependent
140 Covariance matrix of the parameter estimates.
151 'Hat' or Hessian matrix, i.e. (X'X)^{-1}, where X is our
156 double (*predict) (const struct variable **, const union value **,
158 double (*residual) (const struct variable **,
159 const union value **,
160 const union value *, const void *, int);
162 Returns pointers to the variables used in the model.
164 int (*get_vars) (const void *, const struct variable **);
165 struct variable *resid;
166 struct variable *pred;
170 typedef struct pspp_linreg_cache_struct pspp_linreg_cache;
175 Allocate a pspp_linreg_cache and return a pointer
176 to it. n is the number of cases, p is the number of
177 independent variables.
179 pspp_linreg_cache *pspp_linreg_cache_alloc (const struct variable *, const struct variable **,
182 bool pspp_linreg_cache_free (void *);
185 Fit the linear model via least squares. All pointers passed to pspp_linreg
186 are assumed to be allocated to the correct size and initialized to the
187 values as indicated by opts.
190 pspp_linreg (const gsl_vector *, const struct design_matrix *,
191 const pspp_linreg_opts *, pspp_linreg_cache *);
194 pspp_linreg_predict (const struct variable **, const union value **,
197 pspp_linreg_residual (const struct variable **, const union value **,
198 const union value *, const void *, int);
200 All variables used in the model.
202 int pspp_linreg_get_vars (const void *, struct variable **);
204 struct pspp_coeff *pspp_linreg_get_coeff (const pspp_linreg_cache
206 const struct variable
208 const union value *);
210 Return or set the standard deviation of the independent variable.
212 double pspp_linreg_get_indep_variable_sd (pspp_linreg_cache *, const struct variable *);
213 void pspp_linreg_set_indep_variable_sd (pspp_linreg_cache *, const struct variable *, double);
215 Mean of the independent variable.
217 double pspp_linreg_get_indep_variable_mean (pspp_linreg_cache *, const struct variable *);
218 void pspp_linreg_set_indep_variable_mean (pspp_linreg_cache *, const struct variable *, double);
221 Regression using only the covariance matrix.
223 int pspp_linreg_with_cov (const struct design_matrix *, pspp_linreg_cache *);