You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
;;; 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 #: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."))