-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpkgdcls.lisp
More file actions
25 lines (21 loc) · 1.03 KB
/
pkgdcls.lisp
File metadata and controls
25 lines (21 loc) · 1.03 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
;;; -*- Mode: LISP; Base: 10; Syntax: ANSI-Common-Lisp; Package: CL-USER -*-
;;; Copyright (c) 2026 by Symbolics Pte. Ltd. All rights reserved.
(uiop:define-package "QPLOT"
(:use :cl)
(:export #:qplot)
(:documentation "QPLOT provides a quick plotting interface for generating common statistical visualizations with minimal configuration, offering a concise API for rapid exploratory data analysis in Common Lisp."))
(uiop:define-package #:gg
(:use :cl)
(:export #:label #:axes #:coord #:theme #:tooltip #:layer)
(:documentation "GG provides a grammar-of-graphics layer for customizing plot aesthetics, including labels, axes, coordinate systems, themes, and tooltips, enabling fine-grained control over visualization appearance and layout."))
(uiop:define-package #:geom
(:use :cl)
(:export #:histogram
#:bar
#:point
#:line
#:func
#:loess
#:box-plot
#:error-bar)
(:documentation "GEOM defines geometric objects for statistical plots, providing constructors used to represent data visually."))