Compact Python library for math statistics

å×ÇÅÎÉÊ ëÏÓÅÎËÏ eugine_python at ukr.net
Fri Apr 2 05:22:15 EST 2004


I'm looking for a Python library for math statistics. This must be a clear set of general statistics functions like 'average', 'variance', 'covariance' etc.

While googling I found only SalStat, which is rather stand-alone application with GUI on wxWidgets, and I need time and efforts to extract the core engine from it. Apart from this, it does not do some essential things for me, such as multi-component linear regression (y = a0 + a1 x1 + a2 x2 +...), only single-component (y = a0 + a1 x) is available.

Does anyone know something more simple-to-use? Something like

>> from stat import *
>> a = [1, 2, 3, 4, 5, 6]
>> print ave(a), var(a), correl(a, a)
3.5 17.3 1.0

Thanks in advance

I started write something like for me for my own uses. Is it useful to publish it?
-------------- next part --------------
A non-text attachment was scrubbed...
Name: ????????????????.doc
Type: application/octet-stream
Size: 1794 bytes
Desc: not available
URL: <http://mail.python.org/pipermail/python-list/attachments/20040402/2528b1cc/attachment.obj>


More information about the Python-list mailing list