progn'd data for regression. Regression seems to work. Need to get plots working.
[CommonLispStat.git] / regression.lsp
blob5ab1a0eccdb57de5db61a6ba62d951ba38cb8df7
1 ;;; -*- mode: lisp -*-
2 ;;;
3 ;;; Copyright (c) 2005--2007, by A.J. Rossini <blindglobe@gmail.com>
4 ;;; See COPYRIGHT file for any additional restrictions (BSD license).
5 ;;; Since 1991, ANSI was finally finished. Modified to match ANSI
6 ;;; Common Lisp.
8 ;;;;
9 ;;;; regression.lsp XLISP-STAT regression model proto and methods
10 ;;;; XLISP-STAT 2.1 Copyright (c) 1990, by Luke Tierney
11 ;;;; Additions to Xlisp 2.1, Copyright (c) 1989 by David Michael Betz
12 ;;;; You may give out copies of this software; for conditions see the file
13 ;;;; COPYING included with this distribution.
14 ;;;;
15 ;;;;
16 ;;;; Incorporates modifications suggested by Sandy Weisberg.
17 ;;;;
19 (in-package :cl-user)
21 (defpackage :lisp-stat-regression-linear
22 (:use :common-lisp
23 :lisp-stat-object-system
24 :lisp-stat-basics
25 :lisp-stat-compound-data
26 :lisp-stat-math
27 :lisp-stat-matrix
28 :lisp-stat-linalg
29 :lisp-stat-descriptive-statistics)
30 (:shadowing-import-from :lisp-stat-object-system
31 slot-value call-method call-next-method)
32 (:shadowing-import-from :lisp-stat-math
33 expt + - * / ** mod rem abs 1+ 1- log exp sqrt sin cos tan
34 asin acos atan sinh cosh tanh asinh acosh atanh float random
35 truncate floor ceiling round minusp zerop plusp evenp oddp
36 < <= = /= >= > ;; complex
37 conjugate realpart imagpart phase
38 min max logand logior logxor lognot ffloor fceiling
39 ftruncate fround signum cis)
40 (:export regression-model regression-model-proto x y intercept sweep-matrix
41 basis weights included total-sum-of-squares residual-sum-of-squares
42 predictor-names response-name case-labels))
44 (in-package :lisp-stat-regression-linear)
46 ;;; Regresion Model Prototype
48 (defvar regression-model-proto nil
49 "Prototype for all regression model instances.")
50 (defproto regression-model-proto
51 '(x y intercept sweep-matrix basis weights
52 included
53 total-sum-of-squares
54 residual-sum-of-squares
55 predictor-names
56 response-name
57 case-labels
58 doc)
60 *object*
61 "Normal Linear Regression Model")
63 (defun regression-model (x y &key
64 (intercept T)
65 (print T)
66 (weights nil)
67 (included (repeat t (length y)))
68 predictor-names
69 response-name
70 case-labels
71 (doc "Undocumented Regression Model Instance")
72 (debug T))
73 "Args: (x y &key (intercept T) (print T) (weights nil)
74 included predictor-names response-name case-labels)
75 X - list of independent variables or X matrix
76 Y - dependent variable.
77 INTERCEPT - T to include (default), NIL for no intercept
78 PRINT - if not NIL print summary information
79 WEIGHTS - if supplied should be the same length as Y; error
80 variances are
81 assumed to be inversely proportional to WEIGHTS
82 PREDICTOR-NAMES, RESPONSE-NAME, CASE-LABELS
83 - sequences of strings or symbols.
84 INCLUDED - if supplied should be the same length as Y, with
85 elements nil to skip a in computing estimates (but not
86 in residual analysis).
87 Returns a regression model object. To examine the model further assign the
88 result to a variable and send it messages.
89 Example (data are in file absorbtion.lsp in the sample data directory):
90 (def m (regression-model (list iron aluminum) absorbtion))
91 (send m :help) (send m :plot-residuals)"
92 (let ((x (cond
93 ((matrixp x) x)
94 ((typep x 'vector) (list x))
95 ((and (consp x)
96 (numberp (car x))) (list x))
97 (t x)))
98 (m (send regression-model-proto :new)))
99 (format t "~%")
100 (send m :doc doc)
101 (send m :x (if (matrixp x) x (apply #'bind-columns x)))
102 (send m :y y)
103 (send m :intercept intercept)
104 (send m :weights weights)
105 (send m :included included)
106 (send m :predictor-names predictor-names)
107 (send m :response-name response-name)
108 (send m :case-labels case-labels)
109 (if debug
110 (progn
111 (format t "~%")
112 (format t "~S~%" (send m :doc))
113 (format t "X: ~S~%" (send m :x))
114 (format t "Y: ~S~%" (send m :y))))
115 (if print (send m :display))
118 (defmeth regression-model-proto :isnew ()
119 (send self :needs-computing t))
121 (defmeth regression-model-proto :save ()
122 "Message args: ()
123 Returns an expression that will reconstruct the regression model."
124 `(regression-model ',(send self :x)
125 ',(send self :y)
126 :intercept ',(send self :intercept)
127 :weights ',(send self :weights)
128 :included ',(send self :included)
129 :predictor-names ',(send self :predictor-names)
130 :response-name ',(send self :response-name)
131 :case-labels ',(send self :case-labels)))
133 ;;; Computing and Display Methods
135 (defmeth regression-model-proto :compute ()
136 "Message args: ()
137 Recomputes the estimates. For internal use by other messages"
138 (let* ((included (if-else (send self :included) 1 0))
139 (x (send self :x))
140 (y (send self :y))
141 (intercept (send self :intercept))
142 (weights (send self :weights))
143 (w (if weights (* included weights) included))
144 (m (make-sweep-matrix x y w)) ;;; ERROR HERE
145 (n (array-dimension x 1))
146 (p (- (array-dimension m 0) 1))
147 (tss (aref m p p))
148 (tol (* 0.001 (reduce #'* (mapcar #'standard-deviation (column-list x)))))
149 ;; (tol (* 0.001 (apply #'* (mapcar #'standard-deviation (column-list x)))))
150 (sweep-result
151 (if intercept
152 (sweep-operator m (iseq 1 n) tol)
153 (sweep-operator m (iseq 0 n) (cons 0.0 tol)))))
154 (setf (slot-value 'sweep-matrix) (first sweep-result))
155 (setf (slot-value 'total-sum-of-squares) tss)
156 (setf (slot-value 'residual-sum-of-squares)
157 (aref (first sweep-result) p p))
158 (setf (slot-value 'basis)
159 (let ((b (remove 0 (second sweep-result))))
160 (if b (- (reduce #'- (reverse b)) 1)
161 (error "no columns could be swept"))))))
163 (defmeth regression-model-proto :needs-computing (&optional set)
164 ;;(declare (ignore self))
165 (if set (setf (slot-value 'sweep-matrix) nil))
166 (null (slot-value 'sweep-matrix)))
168 (defmeth regression-model-proto :display ()
169 "Message args: ()
170 Prints the least squares regression summary. Variables not used in the fit
171 are marked as aliased."
172 (let ((coefs (coerce (send self :coef-estimates) 'list))
173 (se-s (send self :coef-standard-errors))
174 (x (send self :x))
175 (p-names (send self :predictor-names)))
176 (if (send self :weights)
177 (format t "~%Weighted Least Squares Estimates:~2%")
178 (format t "~%Least Squares Estimates:~2%"))
179 (when (send self :intercept)
180 (format t "Constant ~10f ~A~%"
181 (car coefs) (list (car se-s)))
182 (setf coefs (cdr coefs))
183 (setf se-s (cdr se-s)))
184 (dotimes (i (array-dimension x 1))
185 (cond
186 ((member i (send self :basis))
187 (format t "~22a ~10f ~A~%"
188 (select p-names i) (car coefs) (list (car se-s)))
189 (setf coefs (cdr coefs) se-s (cdr se-s)))
190 (t (format t "~22a aliased~%" (select p-names i)))))
191 (format t "~%")
192 (format t "R Squared: ~10f~%" (send self :r-squared))
193 (format t "Sigma hat: ~10f~%" (send self :sigma-hat))
194 (format t "Number of cases: ~10d~%" (send self :num-cases))
195 (if (/= (send self :num-cases) (send self :num-included))
196 (format t "Number of cases used: ~10d~%" (send self :num-included)))
197 (format t "Degrees of freedom: ~10d~%" (send self :df))
198 (format t "~%")))
200 ;;; Slot accessors and mutators
202 (defmeth regression-model-proto :doc (&optional new-doc)
203 "Message args: (&optional new-doc)
204 With no argument returns the DOC-STRING as supplied to m. With an argument
205 NEW-DOC sets the DOC-STRING to NEW-DOC."
206 (when (and new-doc (stringp new-doc))
207 (setf (slot-value 'doc) new-doc))
208 (slot-value 'doc))
211 (defmeth regression-model-proto :x (&optional new-x)
212 "Message args: (&optional new-x)
213 With no argument returns the x matrix as supplied to m. With an argument
214 NEW-X sets the x matrix to NEW-X and recomputes the estimates."
215 (when (and new-x (matrixp new-x))
216 (setf (slot-value 'x) new-x)
217 (send self :needs-computing t))
218 (slot-value 'x))
220 (defmeth regression-model-proto :y (&optional new-y)
221 "Message args: (&optional new-y)
222 With no argument returns the y sequence as supplied to m. With an argument
223 NEW-Y sets the y sequence to NEW-Y and recomputes the estimates."
224 (when (and new-y
225 (or (matrixp new-y) (typep new-y 'sequence)))
226 (setf (slot-value 'y) new-y)
227 (send self :needs-computing t))
228 (slot-value 'y))
230 (defmeth regression-model-proto :intercept (&optional (val nil set))
231 "Message args: (&optional new-intercept)
232 With no argument returns T if the model includes an intercept term, nil if
233 not. With an argument NEW-INTERCEPT the model is changed to include or
234 exclude an intercept, according to the value of NEW-INTERCEPT."
235 (when set
236 (setf (slot-value 'intercept) val)
237 (send self :needs-computing t))
238 (slot-value 'intercept))
240 (defmeth regression-model-proto :weights (&optional (new-w nil set))
241 "Message args: (&optional new-w)
242 With no argument returns the weight sequence as supplied to m; NIL means
243 an unweighted model. NEW-W sets the weights sequence to NEW-W and
244 recomputes the estimates."
245 (when set
246 (setf (slot-value 'weights) new-w)
247 (send self :needs-computing t))
248 (slot-value 'weights))
250 (defmeth regression-model-proto :total-sum-of-squares ()
251 "Message args: ()
252 Returns the total sum of squares around the mean."
253 (if (send self :needs-computing) (send self :compute))
254 (slot-value 'total-sum-of-squares))
256 (defmeth regression-model-proto :residual-sum-of-squares ()
257 "Message args: ()
258 Returns the residual sum of squares for the model."
259 (if (send self :needs-computing) (send self :compute))
260 (slot-value 'residual-sum-of-squares))
262 (defmeth regression-model-proto :basis ()
263 "Message args: ()
265 Returns the indices of the variables used in fitting the model, in a
266 sequence."
267 (if (send self :needs-computing)
268 (send self :compute))
269 (if (typep (slot-value 'basis) 'sequence)
270 (slot-value 'basis)
271 (list (slot-value 'basis))))
276 (defmeth regression-model-proto :sweep-matrix ()
277 "Message args: ()
278 Returns the swept sweep matrix. For internal use"
279 (if (send self :needs-computing) (send self :compute))
280 (slot-value 'sweep-matrix))
282 (defmeth regression-model-proto :included (&optional new-included)
283 "Message args: (&optional new-included)
285 With no argument, NIL means a case is not used in calculating
286 estimates, and non-nil means it is used. NEW-INCLUDED is a sequence
287 of length of y of nil and t to select cases. Estimates are
288 recomputed."
289 (when (and new-included
290 (= (length new-included) (send self :num-cases)))
291 (setf (slot-value 'included) (copy-seq new-included))
292 (send self :needs-computing t))
293 (if (slot-value 'included)
294 (slot-value 'included)
295 (repeat t (send self :num-cases))))
297 (defmeth regression-model-proto :predictor-names (&optional (names nil set))
298 "Message args: (&optional (names nil set))
299 With no argument returns the predictor names. NAMES sets the names."
300 (if set (setf (slot-value 'predictor-names) (mapcar #'string names)))
301 (let ((p (array-dimension (send self :x) 1))
302 (p-names (slot-value 'predictor-names)))
303 (if (not (and p-names (= (length p-names) p)))
304 (setf (slot-value 'predictor-names)
305 (mapcar #'(lambda (a) (format nil "Variable ~a" a))
306 (iseq 0 (- p 1))))))
307 (slot-value 'predictor-names))
309 (defmeth regression-model-proto :response-name (&optional (name "Y" set))
310 "Message args: (&optional name)
311 With no argument returns the response name. NAME sets the name."
312 ;;(declare (ignore self))
313 (if set (setf (slot-value 'response-name) (if name (string name) "Y")))
314 (slot-value 'response-name))
316 (defmeth regression-model-proto :case-labels (&optional (labels nil set))
317 "Message args: (&optional labels)
318 With no argument returns the case-labels. LABELS sets the labels."
319 (if set (setf (slot-value 'case-labels)
320 (if labels
321 (mapcar #'string labels)
322 (mapcar #'(lambda (x) (format nil "~d" x))
323 (iseq 0 (- (send self :num-cases) 1))))))
324 (slot-value 'case-labels))
327 ;;; Other Methods
328 ;;; None of these methods access any slots directly.
331 (defmeth regression-model-proto :num-cases ()
332 "Message args: ()
333 Returns the number of cases in the model."
334 (length (send self :y)))
336 (defmeth regression-model-proto :num-included ()
337 "Message args: ()
338 Returns the number of cases used in the computations."
339 (sum (if-else (send self :included) 1 0)))
341 (defmeth regression-model-proto :num-coefs ()
342 "Message args: ()
343 Returns the number of coefficients in the fit model (including the
344 intercept if the model includes one)."
345 (if (send self :intercept)
346 (+ 1 (length (send self :basis)))
347 (length (send self :basis))))
349 (defmeth regression-model-proto :df ()
350 "Message args: ()
351 Returns the number of degrees of freedom in the model."
352 (- (send self :num-included) (send self :num-coefs)))
354 (defmeth regression-model-proto :x-matrix ()
355 "Message args: ()
356 Returns the X matrix for the model, including a column of 1's, if
357 appropriate. Columns of X matrix correspond to entries in basis."
358 (let ((m (select (send self :x)
359 (iseq 0 (- (send self :num-cases) 1))
360 (send self :basis))))
361 (if (send self :intercept)
362 (bind-columns (repeat 1 (send self :num-cases)) m)
363 m)))
365 (defmeth regression-model-proto :leverages ()
366 "Message args: ()
367 Returns the diagonal elements of the hat matrix."
368 (let* ((weights (send self :weights))
369 (x (send self :x-matrix))
370 (raw-levs
371 (matmult (* (matmult x (send self :xtxinv)) x)
372 (repeat 1 (send self :num-coefs)))))
373 (if weights (* weights raw-levs) raw-levs)))
375 (defmeth regression-model-proto :fit-values ()
376 "Message args: ()
377 Returns the fitted values for the model."
378 (matmult (send self :x-matrix) (send self :coef-estimates)))
380 (defmeth regression-model-proto :raw-residuals ()
381 "Message args: ()
382 Returns the raw residuals for a model."
383 (- (send self :y) (send self :fit-values)))
385 (defmeth regression-model-proto :residuals ()
386 "Message args: ()
387 Returns the raw residuals for a model without weights. If the model
388 includes weights the raw residuals times the square roots of the weights
389 are returned."
390 (let ((raw-residuals (send self :raw-residuals))
391 (weights (send self :weights)))
392 (if weights (* (sqrt weights) raw-residuals) raw-residuals)))
394 (defmeth regression-model-proto :sum-of-squares ()
395 "Message args: ()
396 Returns the error sum of squares for the model."
397 (send self :residual-sum-of-squares))
399 (defmeth regression-model-proto :sigma-hat ()
400 "Message args: ()
401 Returns the estimated standard deviation of the deviations about the
402 regression line."
403 (let ((ss (send self :sum-of-squares))
404 (df (send self :df)))
405 (if (/= df 0) (sqrt (/ ss df)))))
407 ;; for models without an intercept the 'usual' formula for R^2 can give
408 ;; negative results; hence the max.
409 (defmeth regression-model-proto :r-squared ()
410 "Message args: ()
411 Returns the sample squared multiple correlation coefficient, R squared, for
412 the regression."
413 (max (- 1 (/ (send self :sum-of-squares) (send self :total-sum-of-squares)))
416 (defmeth regression-model-proto :coef-estimates ()
417 "Message args: ()
419 Returns the OLS (ordinary least squares) estimates of the regression
420 coefficients. Entries beyond the intercept correspond to entries in
421 basis."
422 (let ((n (array-dimension (send self :x) 1))
423 (indices (flatten-list
424 (if (send self :intercept)
425 (list 0 (+ 1 (send self :basis))) ;; was cons -- why?
426 (list (+ 1 (send self :basis))))))
427 (m (send self :sweep-matrix)))
428 (format t "~%REMOVEME: Coef-ests: ~A ~% ~A ~% ~A" m n indices)
429 (coerce (compound-data-seq (select m (+ 1 n) indices)) 'list)))
431 (defmeth regression-model-proto :xtxinv ()
432 "Message args: ()
433 Returns ((X^T) X)^(-1) or ((X^T) W X)^(-1)."
434 (let ((indices (if (send self :intercept)
435 (cons 0 (1+ (send self :basis)))
436 (1+ (send self :basis)))))
437 (select (send self :sweep-matrix) indices indices)))
439 (defmeth regression-model-proto :coef-standard-errors ()
440 "Message args: ()
441 Returns estimated standard errors of coefficients. Entries beyond the
442 intercept correspond to entries in basis."
443 (let ((s (send self :sigma-hat)))
444 (if s (* (send self :sigma-hat) (sqrt (diagonal (send self :xtxinv)))))))
446 (defmeth regression-model-proto :studentized-residuals ()
447 "Message args: ()
448 Computes the internally studentized residuals for included cases and externally studentized residuals for excluded cases."
449 (let ((res (send self :residuals))
450 (lev (send self :leverages))
451 (sig (send self :sigma-hat))
452 (inc (send self :included)))
453 (if-else inc
454 (/ res (* sig (sqrt (pmax .00001 (- 1 lev)))))
455 (/ res (* sig (sqrt (+ 1 lev)))))))
457 (defmeth regression-model-proto :externally-studentized-residuals ()
458 "Message args: ()
459 Computes the externally studentized residuals."
460 (let* ((res (send self :studentized-residuals))
461 (df (send self :df)))
462 (if-else (send self :included)
463 (* res (sqrt (/ (- df 1) (- df (^ res 2)))))
464 res)))
466 (defmeth regression-model-proto :cooks-distances ()
467 "Message args: ()
468 Computes Cook's distances."
469 (let ((lev (send self :leverages))
470 (res (/ (^ (send self :studentized-residuals) 2)
471 (send self :num-coefs))))
472 (if-else (send self :included) (* res (/ lev (- 1 lev) )) (* res lev))))
475 (defun plot-points (x y &rest args)
476 "FIXME!!"
477 (declare (ignore x y args))
478 (error "Graphics not implemented yet."))
480 ;; Can not plot points yet!!
481 (defmeth regression-model-proto :plot-residuals (&optional x-values)
482 "Message args: (&optional x-values)
483 Opens a window with a plot of the residuals. If X-VALUES are not supplied
484 the fitted values are used. The plot can be linked to other plots with the
485 link-views function. Returns a plot object."
486 (plot-points (if x-values x-values (send self :fit-values))
487 (send self :residuals)
488 :title "Residual Plot"
489 :point-labels (send self :case-labels)))
491 (defmeth regression-model-proto :plot-bayes-residuals
492 (&optional x-values)
493 "Message args: (&optional x-values)
495 Opens a window with a plot of the standardized residuals and two
496 standard error bars for the posterior distribution of the actual
497 deviations from the line. See Chaloner and Brant. If X-VALUES are not
498 supplied the fitted values are used. The plot can be linked to other
499 plots with the link-views function. Returns a plot object."
501 (let* ((r (/ (send self :residuals)
502 (send self :sigma-hat)))
503 (d (* 2 (sqrt (send self :leverages))))
504 (low (- r d))
505 (high (+ r d))
506 (x-values (if x-values x-values (send self :fit-values)))
507 (p (plot-points x-values r
508 :title "Bayes Residual Plot"
509 :point-labels (send self :case-labels))))
510 (map 'list #'(lambda (a b c d) (send p :plotline a b c d nil))
511 x-values low x-values high)
512 (send p :adjust-to-data)