Remove mis-conceived comments
[CommonLispStat.git] / ls-user.lisp
blobeb66e0f2fac36c7cbe1923861836183d49531274
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
25 ;; lsobjects.lsp
27 ;; data.lisp
30 ;; optimize.lsp
31 newtonmax nelmeadmax
33 ;; lsmath.lsp
34 ^ ** expt + - * / mod rem pmin pmax abs 1+ 1- log exp sqrt sin cos
35 tan asin acos atan sinh cosh tanh asinh acosh atanh float random
36 truncate floor ceiling round minusp zerop plusp evenp oddp < <= =
37 /= >= > complex conjugate realpart imagpart phase min max
38 logand logior logxor lognot ffloor fceiling ftruncate fround
39 signum cis
41 ;; statistics.lsp
42 open-file-dialog read-data-file read-data-columns load-data
43 load-example *variables* *ask-on-redefine* def variables savevar
44 undef standard-deviation quantile median interquartile-range
45 fivnum covariance-matrix difference rseq matrix print-matrix solve
46 backsolve eigenvalues eigenvectors accumulate cumsum combine
47 lowess
49 ;; regression.lsp
50 regression-model regression-model-proto x y intercept sweep-matrix
51 basis weights included total-sum-of-squares residual-sum-of-squares
52 predictor-names response-name case-labels
54 ;; nonlin.lsp
55 nreg-model nreg-model-proto mean-function theta-hat epsilon
56 count-limit verbose
58 ;; bayes.lsp
59 bayes-model bayes-model-proto bayes-internals
64 (defpackage :lisp-stat-user
65 (:documentation "Experimentation package for LispStat. Serious work
66 should be packaged up elsewhere for reproducibility.")
67 (:nicknames :ls-user)
68 (:use :common-lisp
69 :lisp-stat)
70 (:shadowing-import-from :lisp-stat-object-system
71 slot-value call-method call-next-method))
73 (in-package :lisp-stat-user)
75 ;;;