Iam following your lectures/courses about data analysis with Pandas, they are very interesting. I have a problem about pandas-datareader and the import of data_source. When I run the script (you showed in lecture 1 of data analysis/panda) I got several errors. The first error: data_source is not implemented; data_source = Yahoo; isnotimplemented errot and second one; data_source=datetime.datetime(2010, 1, 1, 0, 0) is not implemented. I tried to find an answer to these questions on stackoverflow and other websites, but I cant find the proper solution. I uninstalled and installed the modules a few times, without any success. It is very frustrating, maybe you have a solution to this problem? Iam working with Jupyter Notebook and I already download/install the data-reader for anaconda.
thank you in advance greetings from The Netherlands, maurice
/Users/mauricedominicus/anaconda/lib/python3.6/site-packages/pandas_datareader/data.py in DataReader(name, data_source, start, end, retry_count, pause, session) 125 else: 126 raise NotImplementedError( --> 127 "data_source=%r is not implemented" % data_source) 128 129
NotImplementedError: data_source=datetime.datetime(2010, 1, 1, 0, 0) is not implemented ------------------------- code2: data_source='Yahoo' is not implemented, notimplementederror
You must be logged in to post. Please login or register an account.