Comment-doc -- at least for now, LISTS-OF-LISTS are ROW-MAJOR, NOT COLUMN-MAJOR AS...
[CommonLispStat.git] / src / packages.lisp
blob4e8b306dbc019dfad9ffd95c96941258f6148151
1 ;;; -*- mode: lisp -*-
3 ;;; Time-stamp: <2008-12-19 08:35:50 tony>
4 ;;; Creation: <2008-03-11 19:18:34 user>
5 ;;; File: packages.lisp
6 ;;; Author: AJ Rossini <blindglobe@gmail.com>
7 ;;; Copyright: (c)2007--2008, AJ Rossini. BSD, LLGPL, or GPLv2, depending
8 ;;; on how it arrives.
9 ;;; Purpose: package structure description for lispstat
11 ;;; What is this talk of 'release'? Klingons do not make software
12 ;;; 'releases'. Our software 'escapes', leaving a bloody trail of
13 ;;; designers and quality assurance people in its wake.
15 ;;; This organization and structure is new to the 21st Century
16 ;;; version.
18 (in-package :cl-user)
20 ;;; LispStat Basics
22 (defpackage :lisp-stat-object-system
23 (:nicknames :ls-objects :lsos)
24 (:use :common-lisp)
25 (:shadow :call-method :call-next-method :slot-value)
26 (:export ls-object objectp *object* kind-of-p make-object
27 *message-hook*
28 *set-slot-hook* slot-value self
29 send call-next-method call-method
30 defmeth defproto instance-slots proto-name))
32 (defpackage :lisp-stat-types
33 (:documentation "Provides some typeing for LispStat, but is clearly
34 a bit incomplete.")
35 (:use :common-lisp)
36 (:export fixnump
37 check-nonneg-fixnum check-one-nonneg-fixnum
38 check-one-fixnum check-one-real check-one-number))
40 (defpackage :lisp-stat-float
41 (:use :common-lisp)
42 (:export +stat-float-typing+ +stat-cfloat-typing+ +stat-float-template+
43 machine-epsilon base-float makedouble
45 make-base-trans-fun-2 make-base-trans-fun
47 base-log base-exp base-expt base-sqrt base-sin base-cos
48 base-tan base-asin base-acos base-atan base-sinh
49 BASE-COSH BASE-TANH BASE-ASINH BASE-ACOSH BASE-ATANH
50 BASE-ABS BASE-PHASE BASE-FFLOOR BASE-FCEILING BASE-FTRUNCATE
51 BASE-FROUND BASE-SIGNUM BASE-CIS))
53 (defpackage :lisp-stat-compound-data
54 (:use :common-lisp
55 :lisp-stat-object-system
56 :lisp-stat-types)
57 (:shadowing-import-from :lisp-stat-object-system
58 slot-value
59 call-next-method call-method)
60 (:export compound-data-p *compound-data-proto*
61 compound-object-p
62 compound-data-seq compound-data-length
63 element-list element-seq
64 sort-data order rank
65 recursive-map-elements map-elements repeat
66 check-sequence
67 get-next-element make-next-element set-next-element
68 ;; sequencep
69 iseq ordered-nneg-seq
70 select split-list which
71 difference rseq
72 flatten-list))
74 (defpackage :lisp-stat-macros
75 (:use :common-lisp
76 :lisp-stat-compound-data)
77 (:export make-rv-function make-rv-function-1))
79 (defpackage :lisp-stat-basics
80 (:use :common-lisp
81 :lisp-stat-object-system
82 :lisp-stat-types
83 :lisp-stat-float
84 :lisp-stat-macros
85 :lisp-stat-compound-data)
86 (:shadowing-import-from :lisp-stat-object-system
87 slot-value call-method call-next-method)
88 (:export permute-array sum prod count-elements mean
89 if-else sample))
91 (defpackage :lisp-stat-float
92 (:use :common-lisp)
93 (:export +stat-float-typing+ +stat-cfloat-typing+ +stat-float-template+
94 machine-epsilon base-float makedouble
96 make-base-trans-fun-2 make-base-trans-fun
98 BASE-LOG BASE-EXP BASE-EXPT BASE-SQRT BASE-SIN BASE-COS
99 BASE-TAN BASE-ASIN BASE-ACOS BASE-ATAN BASE-SINH
100 BASE-COSH BASE-TANH BASE-ASINH BASE-ACOSH BASE-ATANH
101 BASE-ABS BASE-PHASE BASE-FFLOOR BASE-FCEILING BASE-FTRUNCATE
102 BASE-FROUND BASE-SIGNUM BASE-CIS))
104 (defpackage :lisp-stat-macros
105 (:use :common-lisp
106 :lisp-stat-compound-data)
107 (:export make-rv-function make-rv-function-1))
109 ;;; NEW CLOS STRUCTURE
111 (defpackage :lisp-stat-data-clos
112 (:use :common-lisp
113 :lisp-matrix)
114 (:export get-variable-matrix get-variable-vector
115 ;; generic container class for data -- if small enough
116 ;; could be value, otherwise might be reference.
117 data-pointer))
120 (defpackage :lisp-stat-regression-linear-clos
121 (:use :common-lisp
122 :lisp-matrix
123 :lisp-stat-data-clos)
124 (:export regression-model))
128 ;;; USER PACKAGES
130 (defpackage :lisp-stat-ffi-int
131 (:use :common-lisp
132 :cffi)
133 (:export ccl-store-integer ccl-store-double ccl-store-ptr
134 get-buf ))
136 (defpackage :lisp-stat-probability
137 (:use :common-lisp
138 :cffi
139 :lisp-stat-ffi-int
140 :lisp-stat-macros)
141 (:export log-gamma set-seed
142 uniform-rand
143 normal-cdf normal-quant normal-dens normal-rand
144 bivnorm-cdf
145 cauchy-cdf cauchy-quant cauchy-dens cauchy-rand
146 gamma-cdf gamma-quant gamma-dens gamma-rand
147 chisq-cdf chisq-quant chisq-dens chisq-rand
148 beta-cdf beta-quant beta-dens beta-rand
149 t-cdf t-quant t-dens t-rand
150 f-cdf f-quant f-dens f-rand
151 poisson-cdf poisson-quant poisson-pmf poisson-rand
152 binomial-cdf binomial-quant binomial-pmf binomial-rand))
155 #| removed, replace by lisp-matrix
156 (defpackage :lisp-stat-matrix
157 (:use :common-lisp
158 :cffi
159 :lisp-stat-compound-data)
160 (:export matrixp ;; matrix -- conflicts!
161 num-rows num-cols matmult identity-matrix diagonal
162 row-list column-list inner-product outer-product
163 cross-product
164 ;; transpose bind-columns bind-rows
165 array-data-vector vector-to-array
167 check-matrix check-square-matrix
169 copy-array copy-vector
173 #| replaced by lisp-matrix
174 (defpackage :lisp-stat-linalg-data
175 (:use :common-lisp
176 :cffi
177 :lisp-stat-ffi-int
178 :lisp-stat-types
179 :lisp-stat-compound-data
180 :lisp-stat-matrix)
181 (:export ;; more to add
182 +mode-in+ +mode-re+ +mode-cx+ mode-of
184 la-data-mode la-allocate la-free
186 la-get-double la-put-double
187 la-put-integer
189 la-matrix la-free-matrix la-matrix-to-data la-data-to-matrix
190 la-vector la-free-vector la-vector-to-data la-data-to-vector ))
193 (defpackage :lisp-stat-math
194 (:use :common-lisp
195 :lisp-stat-object-system
196 :lisp-stat-macros
197 :lisp-stat-compound-data
198 :lisp-stat-float)
199 (:shadowing-import-from :lisp-stat-object-system
200 slot-value call-method call-next-method)
201 (:shadow expt + - * / ** mod rem abs 1+ 1- log exp sqrt sin cos tan
202 asin acos atan sinh cosh tanh asinh acosh atanh float random
203 truncate floor ceiling round minusp zerop plusp evenp oddp
204 < <= = /= >= > ;; complex
205 conjugate realpart imagpart phase
206 min max logand logior logxor lognot ffloor fceiling
207 ftruncate fround signum cis)
208 (:export ^ ** expt + - * / mod rem pmin pmax abs 1+ 1- log exp sqrt sin cos
209 tan asin acos atan sinh cosh tanh asinh acosh atanh float random
210 truncate floor ceiling round minusp zerop plusp evenp oddp < <= =
211 /= >= > ;; complex
212 conjugate realpart imagpart phase min max
213 logand logior logxor lognot ffloor fceiling ftruncate fround
214 signum cis)
215 (:documentation "Vectorization of numerical functions"))
218 #| ;; some of this goes back in, but not all of it?
219 (defpackage :lisp-stat-linalg
220 (:use :common-lisp
221 :cffi
222 :lisp-matrix
223 :lisp-stat-math
224 :lisp-stat-types
225 :lisp-stat-float
226 :lisp-stat-compound-data)
227 (:shadowing-import-from :lisp-stat-math
228 expt + - * / ** mod rem abs 1+ 1- log exp sqrt sin cos tan
229 asin acos atan sinh cosh tanh asinh acosh atanh float random
230 truncate floor ceiling round minusp zerop plusp evenp oddp
231 < <= = /= >= > complex conjugate realpart imagpart phase
232 min max logand logior logxor lognot ffloor fceiling
233 ftruncate fround signum cis)
234 (:export chol-decomp lu-decomp lu-solve determinant inverse
235 sv-decomp qr-decomp rcondest make-rotation spline
236 kernel-dens kernel-smooth
237 fft make-sweep-matrix sweep-operator ax+y eigen
239 check-real ;; for optimize
241 covariance-matrix matrix print-matrix solve
242 backsolve eigenvalues eigenvectors accumulate cumsum combine
243 lowess))
250 (defpackage :lisp-stat-data
251 (:documentation "Data management, integration, I/O, and other data technologies.")
252 (:nicknames :ls-data)
253 (:use :common-lisp
254 :lisp-stat-object-system
255 :lisp-stat-config
256 :lisp-stat-types
257 :lisp-stat-compound-data)
258 (:shadowing-import-from :lisp-stat-object-system
259 slot-value call-method call-next-method)
260 (:export open-file-dialog read-data-file read-data-columns load-data
261 load-example *variables* *ask-on-redefine*
262 def variables savevar undef))
264 (defpackage :lisp-stat-descriptive-statistics
265 (:use :common-lisp
266 :lisp-stat-data
267 :lisp-stat-math
268 :lisp-stat-compound-data
269 :lisp-matrix
270 :lisp-stat-basics)
271 (:shadowing-import-from :lisp-stat-math ;; life is a vector!
272 expt + - * / ** mod rem abs 1+ 1- log exp sqrt sin cos tan
273 asin acos atan sinh cosh tanh asinh acosh atanh float random
274 truncate floor ceiling round minusp zerop plusp evenp oddp
275 < <= = /= >= > ;; complex
276 conjugate realpart imagpart phase
277 min max logand logior logxor lognot ffloor fceiling
278 ftruncate fround signum cis)
279 (:export standard-deviation quantile median interquartile-range
280 fivnum sample))
283 (defpackage :lisp-stat-regression-linear
284 (:use :common-lisp
285 :lisp-matrix
286 :lisp-stat-object-system
287 :lisp-stat-basics
288 :lisp-stat-compound-data
289 :lisp-stat-math
290 :lisp-stat-descriptive-statistics)
291 (:shadowing-import-from :lisp-stat-object-system
292 slot-value call-method call-next-method)
293 (:shadowing-import-from :lisp-stat-math
294 expt + - * / ** mod rem abs 1+ 1- log exp sqrt sin cos tan
295 asin acos atan sinh cosh tanh asinh acosh atanh float random
296 truncate floor ceiling round minusp zerop plusp evenp oddp
297 < <= = /= >= > ;; complex
298 conjugate realpart imagpart phase
299 min max logand logior logxor lognot ffloor fceiling
300 ftruncate fround signum cis)
301 (:export regression-model regression-model-proto x y intercept sweep-matrix
302 basis weights included total-sum-of-squares residual-sum-of-squares
303 predictor-names response-name case-labels))
305 (defpackage :lisp-stat
306 (:documentation "Experimentation package for LispStat. Serious
307 work should be packaged up elsewhere for reproducibility. By this
308 I mean, creating a data/analytics/analysis package with the
309 minimal set of objects required.")
310 (:use :common-lisp
311 :lisp-stat-object-system
312 :lisp-stat-compound-data
313 :lisp-stat-probability
314 :lisp-stat-types
315 :lisp-stat-float
316 :lisp-stat-basics
317 :lisp-stat-data
318 :lisp-stat-math
319 :lisp-matrix ;; conversion to a more robust linalg approach
320 :lisp-stat-descriptive-statistics
321 :lisp-stat-regression-linear)
322 (:shadowing-import-from :lisp-stat-object-system
323 slot-value call-method call-next-method)
324 (:shadowing-import-from :lisp-stat-math
325 expt + - * / ** mod rem abs 1+ 1- log exp sqrt sin cos tan
326 asin acos atan sinh cosh tanh asinh acosh atanh float random
327 truncate floor ceiling round minusp zerop plusp evenp oddp
328 < <= = /= >= >
329 ;;complex
330 conjugate realpart imagpart phase
332 min max
333 logand logior logxor lognot
334 ffloor fceiling ftruncate fround
335 signum cis)
336 (:export
337 ;; lsobjects :
338 defproto defproto2
339 defmeth send
341 ;; lstypes :
342 fixnump check-nonneg-fixnum check-one-fixnum
343 check-one-real check-one-number
345 ;; lsmacros:
347 ;; lsfloat :
348 machine-epsilon
350 ;; compound :
351 compound-data-p *compound-data-proto* compound-object-p
352 compound-data-seq compound-data-length
353 element-list element-seq
354 sort-data order rank
355 recursive-map-elements map-elements
356 repeat
357 check-sequence
358 get-next-element make-next-element set-next-element
359 ;; sequencep
360 iseq
361 ordered-nneg-seq
362 select which
363 difference rseq
365 ;; lsmath.lsp
366 ^ ** expt + - * / mod rem pmin pmax abs 1+ 1- log exp sqrt sin cos
367 tan asin acos atan sinh cosh tanh asinh acosh atanh float random
368 truncate floor ceiling round minusp zerop plusp evenp oddp < <= =
369 /= >= > ;; complex
370 conjugate realpart imagpart phase min max
371 logand logior logxor lognot ffloor fceiling ftruncate fround
372 signum cis
374 #| ;; The following need to be re-found in lisp-matrix...
376 ;; matrices.lisp
377 matrixp num-rows num-cols matmult identity-matrix diagonal row-list
378 column-list inner-product outer-product cross-product transpose
379 bind-columns bind-rows
381 ;; linalg.lisp
382 chol-decomp lu-decomp lu-solve determinant inverse
383 sv-decomp qr-decomp rcondest make-rotation spline
384 kernel-dens kernel-smooth
385 fft make-sweep-matrix sweep-operator ax+y eigen
386 check-real
387 covariance-matrix matrix print-matrix solve
388 backsolve eigenvalues eigenvectors accumulate cumsum combine
389 lowess
391 ;; in linalg.lisp, possibly not supported by matlisp
392 spline kernel-dens kernel-smooth
396 ;; optimize.lsp
397 newtonmax nelmeadmax
399 ;; lispstat-macros
400 make-rv-function make-rv-function-1
402 ;; data.lisp
403 open-file-dialog read-data-file read-data-columns load-data
404 load-example *variables* *ask-on-redefine*
405 def variables savevar undef
407 ;; statistics.lsp (descriptions, should probably be moved
408 ;; later...?
409 standard-deviation quantile median interquartile-range
410 fivnum sample
412 ;; probability (dists.lisp)
413 log-gamma set-seed
414 uniform-rand normal-cdf normal-quant normal-dens
415 normal-rand bivnorm-cdf cauchy-cdf cauchy-quant cauchy-dens
416 cauchy-rand gamma-cdf gamma-quant gamma-dens gamma-rand
417 chisq-cdf chisq-quant chisq-dens chisq-rand beta-cdf beta-quant
418 beta-dens beta-rand t-cdf t-quant t-dens t-rand f-cdf f-quant
419 f-dens f-rand poisson-cdf poisson-quant poisson-pmf poisson-rand
420 binomial-cdf binomial-quant binomial-pmf binomial-rand
422 ;; Here is where we have a problem -- lispstat core should be core
423 ;; data management and config problems, with packages providing
424 ;; specialized extensions to LispStat, i.e. regression, nonlin
425 ;; regression, bayesian regression via laplace approximation, etc.
427 ;; The following could be considered "recommended packages",
428 ;; similar to the idea of the recommended packages in R. Probably
429 ;; we want them to do the exporting within that package, therefore
430 ;; NOT being able to lock the "data-ish" package, but only the
431 ;; subpackages prior to export.
433 ;; regression.lsp
434 regression-model regression-model-proto x y intercept sweep-matrix
435 basis weights included total-sum-of-squares residual-sum-of-squares
436 predictor-names response-name case-labels
438 ;; nonlin.lsp
439 nreg-model nreg-model-proto mean-function theta-hat epsilon
440 count-limit verbose
442 ;; bayes.lsp
443 bayes-model bayes-model-proto bayes-internals))
446 ;;;; PACKAGES FOR USEABILITY
448 (defpackage :lisp-stat-data-examples
449 (:documentation "Example data for unittests, examples, illustrations,")
450 (:use :common-lisp
451 :lisp-stat)
452 (:shadowing-import-from :lisp-stat
453 slot-value call-method call-next-method
455 expt + - * / ** mod rem abs 1+ 1- log exp sqrt sin cos tan
456 asin acos atan sinh cosh tanh asinh acosh atanh float random
457 truncate floor ceiling round minusp zerop plusp evenp oddp
458 < <= = /= >= > > ;; complex
459 conjugate realpart imagpart phase
460 min max logand logior logxor lognot ffloor fceiling
461 ftruncate fround signum cis
463 <= float imagpart)
464 (:export iron aluminum absorbtion
465 diabetes dlabs))
468 (defpackage :lisp-stat-user
469 (:documentation "Experimentation package for LispStat.
470 Serious work should be placed in a similar package elsewhere for
471 reproducibility. But this should hint as to what needs to be
472 done for a user- or analysis-package.")
473 (:nicknames :ls-user)
474 (:use :common-lisp
475 :lisp-matrix
476 :lisp-stat
477 :lisp-stat-data-examples) ;; this last is to have 'things to play with'
478 (:shadowing-import-from :lisp-stat
479 slot-value call-method call-next-method
481 expt + - * / ** mod rem abs 1+ 1- log exp sqrt sin cos tan
482 asin acos atan sinh cosh tanh asinh acosh atanh float random
483 truncate floor ceiling round minusp zerop plusp evenp oddp
484 < <= = /= >= > > ;; complex
485 conjugate realpart imagpart phase
486 min max logand logior logxor lognot ffloor fceiling
487 ftruncate fround signum cis
489 <= float imagpart))
491 (defpackage :lisp-stat-unittests
492 (:use :common-lisp :lift :lisp-stat :lisp-stat-data-examples)
493 (:shadowing-import-from :lisp-stat
494 slot-value call-method call-next-method ;; objects
495 expt + - * / ** mod rem abs 1+ 1- log exp sqrt sin cos tan ;; lsmath
496 asin acos atan sinh cosh tanh asinh acosh atanh float random
497 truncate floor ceiling round minusp zerop plusp evenp oddp
498 < <= = /= >= > ;; complex
499 conjugate realpart imagpart phase
500 min max logand logior logxor lognot ffloor fceiling
501 ftruncate fround signum cis)
502 (:export run-lisp-stat-tests run-lisp-stat-test scoreboard ; exec
503 almost= almost=lists numerical=)) ; compare
505 (defpackage :lisp-stat-data-clos-example
506 (:use :common-lisp
507 :lift :lisp-stat-unittests
508 :lisp-stat-data-examples
509 :lisp-stat-data-clos)
510 (:export absorbtion aluminum iron))
513 (defpackage :lisp-stat-optimize
514 (:use :common-lisp
515 :cffi
516 :lisp-matrix
517 :lisp-stat-ffi-int
518 :lisp-stat-object-system
519 :lisp-stat-types
520 :lisp-stat-compound-data
521 :lisp-stat-math
522 :lisp-stat-float
523 :lisp-stat-basics
525 :lisp-stat-matrix
526 :lisp-stat-linalg-data
527 :lisp-stat-linalg
530 (:shadowing-import-from :lisp-stat-object-system
531 slot-value call-method call-next-method)
532 (:shadowing-import-from :lisp-stat-math
533 expt + - * / ** mod rem abs 1+ 1- log exp sqrt sin cos tan
534 asin acos atan sinh cosh tanh asinh acosh atanh float random
535 truncate floor ceiling round minusp zerop plusp evenp oddp
536 < <= = /= >= > complex conjugate realpart imagpart phase
537 min max logand logior logxor lognot ffloor fceiling
538 ftruncate fround signum cis)
539 (:export
540 ;; derivatives
541 numgrad numhess
543 ;; optimization
544 newtonmax nelmeadmax))