-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpkgdcls.lisp
More file actions
39 lines (35 loc) · 1.09 KB
/
pkgdcls.lisp
File metadata and controls
39 lines (35 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
;;; -*- Mode: LISP; Base: 10; Syntax: ANSI-Common-Lisp; Package: ORG.TFEB.CLC-USER -*-
;;; Copyright (c) 2021-2025, 2026 by Symbolics Pte. Ltd. All rights reserved.
;;; SPDX-License-identifier: MS-PL
(in-package :org.tfeb.clc-user)
(defpackage #:lisp-stat
(:use)
(:extends :cl)
(:extends/excluding #:alexandria #:mean
#:variance
#:median
#:flatten
#:standard-deviation)
(:extends :alexandria+)
(:extends :array-operations)
(:extends :data-frame)
(:extends :dfio)
;; (:extends/excluding #:distributions #:variance
;; #:mean
;; #:scale
;; #:quantile)
(:extends :num-utils.arithmetic)
(:extends :num-utils.elementwise)
(:extends :num-utils.utilities)
(:extends :num-utils.print-matrix)
(:extends :select)
(:extends :batch-statistics)
(:extends :stat-generics)
(:export #:variables
#:def
#:undef-var
#:savevar
#:load-tutorial-data))
(defpackage #:ls-user
(:use)
(:extends :lisp-stat))