I'm trying to get started with scipy, but the package gives me some problems. The tutorial relies heavily on scipy.io, but when I import scypi and try to use scipy.io, I get errors:
In [1]: import scipy In [2]: help(scipy.io) --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) /home/chris/dev/scipy/<ipython-input-2-ef060398b31c> in <module>() ----> 1 help(scipy.io) AttributeError: 'module' object has no attribute 'io'
I ran system updates and I uninstalled scipy and then installed it again.
Interestingly, I can import the module as follows:
In [1]: import scipy.io
But then when I try to use it, I get an error message as soon as I use the method:
In [2]: arr = scipy.array([[1.0,2.0],[3.0,4.0],[5.0,6.0]]) In [3]: outFile = file('tmpdata1.txt', 'w') In [4]: scipy.io.write_array(outFile, arr) --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) /home/chris/dev/scipy/<ipython-input-4-46d22e4ff485> in <module>() ----> 1 scipy.io.write_array(outFile, arr) AttributeError: 'module' object has no attribute 'write_array'
I am sure that I have something awkward, but I could not find the answer to this problem in Google or in the stackoverflow archives.
Chris hanson
source share