Improve loading the system in sbclb#7
Conversation
nonexisting `defalias` function in sbcl
Before: ``` * (ql:quickload :lisp-stat) debugger invoked on a ORG.TFEB.CONDUIT-PACKAGES::CONDUIT-ERROR in thread No package named :STATISTICS ``` same error happen when trying `(ql:quickload :statistics)` After: All `(ql:quickload :lisp-stat)`, `(ql:quickload :statistics)` or `(ql:quickload "statistics")` work without errors.
|
All contributors have signed the CLA ✍️ ✅ |
|
I have read the CLA Document and I hereby sign the CLA |
|
I think these issues are due to a stale version of the libraries in Quicklisp. Will you please try downloading |
|
Hi, Thank you for response!
I double checked and already had cloned for clarity here is fuller output from repl This is fixed by the first commit 6d1349b With first commit applied we get rid of the IQR error but This is addressed by the second commit 263c40b Lastly also with second commit applied: This is addressed by the last commit 8cd260f Also my setup: |
|
Try this:
That should get you going. Actually, what would be very helpful would be if you could help document these new user experiences, either in a 'blog or github tutorial on your own or in the lisp-stat documentation. It's easy to miss these things after you've been a user for a while and capturing the problems newcomers face is valuable. |
Indeed this solves the issue with IQR alias. 👍🏻 I'm happy to close this PR without merge as the other two things feel just cosmetic things. Although it still surprises me to see the existing export of mean and variance in Is that by purpose or just some kind of leftover? Ad 2. Yeah, I'm still in exploratory phase of the whole lisp-stat system :) Thanks for the feedback so far! |
|
You raise a good point in the exports. I have removed them from One thing to note as you explore lisp-stat in mid 2026: the code is ahead of the documentation. There are complete tests though, and those are probably the best 'how to' sources at the moment. In particular with plot the 'quickplot' functionality has been merged into the mainline code and is no longer a stand-alone system. |
Thank you for getting together this project.
When trying to use it I encounter few minor issues so far that I try to address in this PR.
This is due to missing definition of
defaliasmacro(function) in sbcl.varianceandmeanfn instatisticspackageI guess this is left from some larger changes and their export could be removed.
To avoid breaking changes I decided for time being import them from
:stat-generics