I am used to using numpy.recfromcsv to load csv files as record arrays in python.
However on my new laptop (MB pro running OS 10.6.6), numpy doesn't seem to recognize recfromcsv as a function (same with genfromtxt or recfromtxt).
>>> import numpy as np
>>> np.recfromcsv
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'recfromcsv'
Why would this happen? I have never seen this before and everywhere I look it seems as though recfromcsv (and the rest) should be basic numpy functions. I am working with the native install of python on my machine (Python 2.6.1), and with the version of numpy comes with the Mac OS.
>>> reload(np)
<module 'numpy' from '/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/numpy/__init__.py'>