Re: ANN: stats 0.1a calculator statistics for Python

2010-10-19 Thread Chris Torek
>2010/10/17 Steven D'Aprano : >> http://pypi.python.org/pypi/stats In article Vlastimil Brom wrote: >Thanks for this useful module! >I just wanted to report a marginal error triggered in the doctests: > >Failed example: >isnan(float('nan')) >Exception raised: >Traceback (most recent cal

Re: ANN: stats 0.1a calculator statistics for Python

2010-10-19 Thread Jean-Michel Pichavant
Steven D'Aprano wrote: On Tue, 19 Oct 2010 11:53:40 +1100, Ben Finney wrote: Steven D'Aprano writes: On Mon, 18 Oct 2010 11:56:39 +0200, Jean-Michel Pichavant wrote: I already have a stats module: /usr/lib/python2.5/site-packages/stats.py The name of my module is n

Re: ANN: stats 0.1a calculator statistics for Python

2010-10-18 Thread Steven D'Aprano
On Tue, 19 Oct 2010 11:53:40 +1100, Ben Finney wrote: > Steven D'Aprano writes: > >> On Mon, 18 Oct 2010 11:56:39 +0200, Jean-Michel Pichavant wrote: >> >> > I already have a stats module: >> > /usr/lib/python2.5/site-packages/stats.py >> >> The name of my module is not set in stone. >> >> I can

Re: ANN: stats 0.1a calculator statistics for Python

2010-10-18 Thread Ben Finney
Steven D'Aprano writes: > On Mon, 18 Oct 2010 11:56:39 +0200, Jean-Michel Pichavant wrote: > > > I already have a stats module: > > /usr/lib/python2.5/site-packages/stats.py > > The name of my module is not set in stone. > > I can't help what site-packages you have, but the above is not on > PyPI

Re: ANN: stats 0.1a calculator statistics for Python

2010-10-18 Thread Steven D'Aprano
On Mon, 18 Oct 2010 11:56:39 +0200, Jean-Michel Pichavant wrote: > I already have a stats module: > /usr/lib/python2.5/site-packages/stats.py The name of my module is not set in stone. I can't help what site-packages you have, but the above is not on PyPI, and it's certainly not part of the sta

Re: ANN: stats 0.1a calculator statistics for Python

2010-10-18 Thread Vlastimil Brom
2010/10/17 Steven D'Aprano : > I am pleased to announce the first public release of stats for Python. > > http://pypi.python.org/pypi/stats > > stats is a pure-Python module providing basic statistics functions > similar to those found on scientific calculators. It currently includes: > > Univariat

Re: ANN: stats 0.1a calculator statistics for Python

2010-10-18 Thread Tim Wintle
On Sun, 2010-10-17 at 17:10 +, Steven D'Aprano wrote: > I am pleased to announce the first public release of stats for Python. > > http://pypi.python.org/pypi/stats Quick comment on your sum() function: http://docs.python.org/library/math.html#math.fsum (in 2.6 and above) should do the sa

Re: ANN: stats 0.1a calculator statistics for Python

2010-10-18 Thread Jean-Michel Pichavant
Steven D'Aprano wrote: I am pleased to announce the first public release of stats for Python. http://pypi.python.org/pypi/stats stats is a pure-Python module providing basic statistics functions similar to those found on scientific calculators. It currently includes: Univariate statistics in

ANN: stats 0.1a calculator statistics for Python

2010-10-17 Thread Steven D'Aprano
I am pleased to announce the first public release of stats for Python. http://pypi.python.org/pypi/stats stats is a pure-Python module providing basic statistics functions similar to those found on scientific calculators. It currently includes: Univariate statistics including: * arithmetic, har