I will tell you that I program n00b according to stack standards. I have experience analyzing data and creating scripts - this is what I do professionally in a financial firm, but I have no idea what I'm doing in the background.
I am trying to start using pandas and python --- moving away from matlab / vba, but I cannot figure out how to install the pandas library.
When I try to import pandas, I get an error that the numpy module is missing. I tried installing ezsetup / pip (I donโt know what it is) ... and I have no idea where to enter this command $ python get-pip.py
Sometimes, when I try to import pandas , I get an error, cannot import the hash name table
I have no idea what this means, and I'm not going anywhere.
Update
Ok, I installed anaconda, and it seems to me that I can import numpy and pandas directly from the console. At the same time, when I try to write a base time series and construct it using the pandas syntax, I get an error that the "series is not defined" as such, I'm not sure if it really works
In [1]: import matplotlib.pyplot as plt In [2]: ts = Series(randn(1000), index=date_range('1/1/2000', periods=1000)) In [3]: ts = ts.cumsum() In [4]: ts.plot()
python numpy pandas installation
googlekid
source share