2 ;;; Copyright (c) 2005--2007, by A.J. Rossini <blindglobe@gmail.com>
3 ;;; See COPYRIGHT file for any additional restrictions (BSD license).
4 ;;; Since 1991, ANSI was finally finished. Edited for ANSI Common Lisp.
6 ;;; XLisp-ism's removed to focus on Common Lisp. Original source from:
7 ;;;; statistics.lsp XLISP-STAT statistics functions
8 ;;;; XLISP-STAT 2.1 Copyright (c) 1990, by Luke Tierney
9 ;;;; Additions to Xlisp 2.1, Copyright (c) 1989 by David Michael Betz
10 ;;;; You may give out copies of this software; for conditions see the file
11 ;;;; COPYING included with this distribution.
15 (defpackage :lisp-stat-descriptive-statistics
19 (:shadowing-import-from
:lisp-stat-math
20 expt
+ -
* / ** mod rem abs
1+ 1- log exp sqrt sin cos tan
21 asin acos atan sinh cosh tanh asinh acosh atanh float random
22 truncate floor ceiling round minusp zerop plusp evenp oddp
23 < <= = /= >= > complex conjugate realpart imagpart phase
24 min max logand logior logxor lognot ffloor fceiling
25 ftruncate fround signum cis
)
26 (:export
;; descriptive stats
27 standard-deviation quantile median interquartile-range
32 ;; the following are more matrix-centric
33 covariance-matrix matrix print-matrix solve
34 backsolve eigenvalues eigenvectors accumulate cumsum combine
37 (in-package :lisp-stat-descriptive-statistics
)
40 ;;;; Basic Summary Statistics
43 (defun standard-deviation (x)
45 Returns the standard deviation of the elements x. Vector reducing."
46 (let ((n (count-elements x
))
48 (sqrt (* (mean (* r r
)) (/ n
(- n
1))))))
51 ;; FIXME the following assume that we are using the vector based functions
54 Returns the P-th quantile(s) of sequence X. P can be a number or a sequence."
55 (let* ((x (sort-data x
))
60 (/ (+ (select x low
) (select x high
)) 2)))
64 Returns the median of the elements of X."
67 (defun interquartile-range (x)
69 Returns the interquartile range of the elements of X."
70 (reduce #'-
(quantile x
'(0.75
0.25))))
74 Returns the five number summary (min, 1st quartile, medinan, 3rd quartile,
75 max) of the elements X."
76 (quantile x
'(0 .25 .5 .75 1)))
78 (defun covariance-matrix (&rest args
)
80 Returns the sample covariance matrix of the data columns in ARGS. ARGS may
81 consist of lists, vectors or matrices."
82 (let ((columns (apply #'append
84 (if (matrixp x
) (column-list x
) (list x
)))
86 (/ (cross-product (apply #'bind-columns
87 (- columns
(mapcar #'mean columns
))))
88 (- (length (car columns
)) 1))))
90 ;;;; Sampling / Resampling
92 (defun sample (x ssize
&optional replace
)
93 "Args: (x n &optional (replace nil))
94 Returns a list of a random sample of size N from sequence X drawn with or
98 (x (if (consp x
) (coerce x
'vector
) (copy-vector x
)))
101 (dotimes (i ssize result
)
102 (let ((j (if replace
(random n
) (+ i
(random (- n i
))))))
103 (setf result
(cons (aref x j
) result
))
104 (unless replace
;; swap elements i and j
105 (let ((temp (aref x i
)))
106 (setf (aref x i
) (aref x j
))
107 (setf (aref x j
) temp
))))))))
113 Returns the mean of the elements x. Vector reducing."
116 (labels ((add-to-mean (x)
117 (let ((count+1 (+ count
1.0)))
118 (setf mean
(+ (* (/ count count
+1) mean
) (* (/ count
+1) x
)))
119 (setf count count
+1)))
123 (let ((seq (compound-data-seq x
)))
126 (if (numberp x
) (add-to-mean x
) (find-mean x
)))
127 (let ((n (length seq
)))
130 (let ((x (aref seq i
)))
133 (find-mean x
))))))))))
138 ;;;; Linear Algebra Functions
141 (defun matrix (dim data
)
143 returns a matrix of dimensions DIM initialized using sequence DATA
145 (let ((dim (coerce dim
'list
))
146 (data (coerce data
'list
)))
147 (make-array dim
:initial-contents
(split-list data
(nth 1 dim
)))))
149 (defun print-matrix (a &optional
(stream *standard-output
*))
150 "Args: (matrix &optional stream)
151 Prints MATRIX to STREAM in a nice form that is still machine readable"
152 (unless (matrixp a
) (error "not a matrix - ~a" a
))
153 (let ((size (min 15 (max (map-elements #'flatsize a
)))))
154 (format stream
"#2a(~%")
155 (dolist (x (row-list a
))
157 (let ((n (length x
)))
159 (let ((y (aref x i
)))
161 ((integerp y
) (format stream
"~vd" size y
))
162 ((floatp y
) (format stream
"~vg" size y
))
163 (t (format stream
"~va" size y
))))
164 (if (< i
(- n
1)) (format stream
" "))))
165 (format stream
")~%"))
166 (format stream
" )~%")
171 Solves A x = B using LU decomposition and backsolving. B can be a sequence
173 (let ((lu (lu-decomp a
)))
175 (apply #'bind-columns
176 (mapcar #'(lambda (x) (lu-solve lu x
)) (column-list b
)))
179 (defun backsolve (a b
)
181 Solves A x = B by backsolving, assuming A is upper triangular. B must be a
182 sequence. For use with qr-decomp."
183 (let* ((n (length b
))
184 (sol (make-array n
)))
190 (setq val
(- val
(* (aref sol l
) (aref a k l
))))))
191 (setf (aref sol k
) (/ val
(aref a k k
)))))
192 (if (listp b
) (coerce sol
'list
) sol
)))
194 (defun eigenvalues (a)
196 Returns list of eigenvalues of square, symmetric matrix A"
199 (defun eigenvectors (a)
201 Returns list of eigenvectors of square, symmetric matrix A"
204 (defun accumulate (f s
)
206 Accumulates elements of sequence S using binary function F.
207 (accumulate #'+ x) returns the cumulative sum of x."
208 (let* ((result (list (elt s
0)))
210 (flet ((acc (dummy x
)
211 (rplacd tail
(list (funcall f
(first tail
) x
)))
212 (setf tail
(cdr tail
))))
214 (if (vectorp s
) (coerce result
'vector
) result
)))
218 Returns the cumulative sum of X."
221 (defun combine (&rest args
)
223 Returns sequence of elements of all arguments."
224 (copy-seq (element-seq args
)))
226 (defun lowess (x y
&key
(f .25) (steps 2) (delta -
1) sorted
)
227 "Args: (x y &key (f .25) (steps 2) delta sorted)
228 Returns (list X YS) with YS the LOWESS fit. F is the fraction of data used for
229 each point, STEPS is the number of robust iterations. Fits for points within
230 DELTA of each other are interpolated linearly. If the X values setting SORTED
231 to T speeds up the computation."
232 (let ((x (if sorted x
(sort-data x
)))
233 (y (if sorted y
(select y
(order x
))))
234 (delta (if (> delta
0.0) delta
(/ (- (max x
) (min x
)) 50))))
235 (list x
)));; (|base-lowess| x y f steps delta))))