Closed GoogleCodeExporter closed 9 years ago
Thanks for your report. The problem is that the function 'numpy.histogram' in
NumPy >= 1.4 no longer supports the 'new' keyword argument. This is now fixed
in the SciTools development repository. You can either install SciTools again
from the development repository or remove the 'new' keyword in line 1078 in the
file c:\Python26\Lib\site-packages\scitools\numpyutils.py, that is, change this
line
y0, bin_edges = histogram(samples, bins=nbins, normed=True, new=True)
into this
y0, bin_edges = histogram(samples, bins=nbins, normed=True)
Original comment by johannes...@gmail.com
on 14 Dec 2010 at 9:51
Original issue reported on code.google.com by
vandyke....@gmail.com
on 13 Dec 2010 at 11:23