From 58dfa1808309d1845fd16e499bdbfdba2ecc3d5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Li=C4=81u=20Kiong-G=C4=93?= Date: Sat, 9 May 2026 16:11:49 -0500 Subject: [PATCH 1/2] Update batch.lisp remove the iqr alias at the end since this package does not export IQR --- src/batch.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/batch.lisp b/src/batch.lisp index a357570..1085505 100644 --- a/src/batch.lisp +++ b/src/batch.lisp @@ -232,5 +232,5 @@ appearance when ties exist." ;;; Helpful shortcuts -(defalias iqr interquartile-range) +;; (defalias iqr interquartile-range) From e14379186037f4c567cd0934ca258ebf6b70e93c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Li=C4=81u=20Kiong-G=C4=93?= Date: Sat, 16 May 2026 08:21:37 -0500 Subject: [PATCH 2/2] Update batch.lisp updated per maintainer's recommendation --- src/batch.lisp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/batch.lisp b/src/batch.lisp index 1085505..55b5275 100644 --- a/src/batch.lisp +++ b/src/batch.lisp @@ -26,6 +26,7 @@ (in-package #:batch-statistics) + ;;; Internal helpers @@ -232,5 +233,6 @@ appearance when ties exist." ;;; Helpful shortcuts -;; (defalias iqr interquartile-range) +(defalias iqr interquartile-range) +(export 'iqr)