reduce/apply/values corrections
[CommonLispStat.git] / ls-user.lisp
blob6c6e0e164fde06f6bbff2e5ec37aed9602816f53
1 ;;; -*- mode: lisp -*-
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.
7 (in-package :cl-user)
10 (defpackage :lisp-stat
11 (:documentation "Experimentation package for LispStat. Serious work
12 should be packaged up elsewhere for reproducibility.")
13 (:nicknames :ls-user)
14 (:use :common-lisp
15 :lisp-stat-object-system
16 :lisp-stat-float
17 :lisp-stat-math
18 :lisp-stat-basics
19 :lisp-stat-regression-linear)
20 (:shadowing-import-from :lisp-stat-object-system
21 slot-value call-method call-next-method)
22 (:export
23 ;; lsobjects.lsp : should this become a prototype object?
24 defproto defmeth send
26 ;; data.lisp
29 ;; lsmath.lsp
30 ^ ** expt + - * / mod rem pmin pmax abs 1+ 1- log exp sqrt sin cos
31 tan asin acos atan sinh cosh tanh asinh acosh atanh float random
32 truncate floor ceiling round minusp zerop plusp evenp oddp < <= =
33 /= >= > complex conjugate realpart imagpart phase min max
34 logand logior logxor lognot ffloor fceiling ftruncate fround
35 signum cis
37 ;; statistics.lsp
38 open-file-dialog read-data-file read-data-columns load-data
39 load-example *variables* *ask-on-redefine* def variables savevar
40 undef standard-deviation quantile median interquartile-range
41 fivnum covariance-matrix difference rseq matrix print-matrix solve
42 backsolve eigenvalues eigenvectors accumulate cumsum combine
43 lowess
45 ;;; Here is where we have a problem -- lispstat core should be core
46 ;;; data management and config problems, with packages providing
47 ;;; specialized extensions to LispStat, i.e. regression, nonlin
48 ;;; regression, bayesian regression via laplace approximation, etc.
50 ;;; The following could be considered "core packages", similar to the
51 ;;; idea of a recommended set.
53 ;; regression.lsp
54 regression-model regression-model-proto x y intercept sweep-matrix
55 basis weights included total-sum-of-squares residual-sum-of-squares
56 predictor-names response-name case-labels
58 ;; nonlin.lsp
59 nreg-model nreg-model-proto mean-function theta-hat epsilon
60 count-limit verbose
62 ;; bayes.lsp
63 bayes-model bayes-model-proto bayes-internals
65 ;; optimize.lsp
66 newtonmax nelmeadmax
71 (defpackage :lisp-stat-user
72 (:documentation "Experimentation package for LispStat. Serious work
73 should be packaged up elsewhere for reproducibility.")
74 (:nicknames :ls-user)
75 (:use :common-lisp
76 :lisp-stat)
77 (:shadowing-import-from :lisp-stat-object-system
78 slot-value call-method call-next-method))
80 (in-package :lisp-stat-user)
82 ;;;