From fde0c62ac473779898ecfd0c5abfef78b2fbdb6d Mon Sep 17 00:00:00 2001 From: AJ Rossini Date: Fri, 5 Sep 2008 08:17:40 +0200 Subject: [PATCH] macro mis-quote syntax fixed. --- src/describe/statistics.lsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/describe/statistics.lsp b/src/describe/statistics.lsp index f9b289a..81cdfb7 100644 --- a/src/describe/statistics.lsp +++ b/src/describe/statistics.lsp @@ -80,7 +80,7 @@ Returns the P-th quantile(s) of sequence X. P can be a number or a sequence.")) ;; Args: (number-data) ;; Returns the interquartile range of the elements of X. (defmacro interquartile-range (x) - '(reduce #'- (quantile ,x '(0.75 0.25)))) + `(reduce #'- (quantile ,x '(0.75 0.25)))) (defun fivnum (x) "Args: (number-data) -- 2.11.4.GIT