Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

statistics packages for Common Lisp

I have been looking for some good statistics package for Common Lisp, that should be both stable and efficient. There is lhstats, but it doesn't have much documentation and it's not currently maintained. So what is the preferred way for statistics programming in Common Lisp (I'm using SBCL)? I'm looking for a package with advanced statistical functions, such as SEM (structural equation modeling), canonical correlations, GLM (general linear model) etc., but also even very basic but stable and well-documented statistical packages would be useful. Calling R statistical functions from Common Lisp would also be one option. What do you recommend?

like image 554
nrz Avatar asked May 06 '12 14:05

nrz


2 Answers

Probably, you should look at common-lisp-stat

like image 57
Vsevolod Dyomkin Avatar answered Nov 20 '22 00:11

Vsevolod Dyomkin


The GNU Scientific Library has statistics functions and is accessible from GNU Scientific Library for Lisp.

like image 6
Liam Avatar answered Nov 20 '22 01:11

Liam