basic statistics in python

Sandy Norton sandskyfly at hotmail.com
Thu Mar 14 02:54:42 EST 2002


"dsavitsk" <dsavitsk at e-coli.net> wrote in message news:<OvQj8.10177$k5.3810357 at newssvr28.news.prodigy.com>...
> hi all,
> 
> never having done numeric calculations in python* i am seeking advice on how
> to best go about doing some basic statistics.  in particular, i need to find
> standard deviations and point bi-serial correlations**, and i am seeking
> advice on the best way to go about it.  i know how to do them, but i am
> wondering if there are prebuilt modules that might simplify the task.

here's a good start:

http://www.nmr.mgh.harvard.edu/Neural_Systems_Group/gary/python.html
for some nice pure python statistical function implementations.

Orange, the super cool python machine learning system also includes an
extension called statc.dll which has some fast functions.
http://magix.fri.uni-lj.si/orange/

a data mining extension to orange for clustering and whatnot is also
available:
http://ai.fri.uni-lj.si/~aleks/orng/

There is the fine and well-documented python Numeric library:
http://www.pfdubois.com/numpy/

Scipy - scientific tools for python (includes a version of Numeric):
http://www.pfdubois.com/numpy/

And, of course, there is Scientific Python:
http://starship.python.net/crew/hinsen/scientific.html

all of these, like python, are fun, fun, fun...

enjoy (-:

Sandy



More information about the Python-list mailing list