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
(:documentation "Warning signaled when the deprecated QPLOT constructor compatibility seam is used.")
(:report (lambda (condition stream)
(declare (ignore condition))
(format stream
"QPLOT is deprecated as a constructor entry point; prefer VEGA:MAKE-PLOT / MAKE-PLOT with the high-level data-plus-fragments path for new code."))))
(defvar *qplot-deprecation-warning-issued-p* nil
"Tracks whether the QPLOT deprecation warning has already been signaled.")
(defun qplot (name data &rest layers)
"Deprecated quick plot compatibility wrapper for iterative REPL exploration. Delegates high-level construction to VEGA:MAKE-PLOT and returns the plot object.