Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

pandas datareader raises AttributeError: module 'pandas.io' has no attribute 'data'

Tags:

python

pandas

This is a code I am trying

import matplotlib.pyplot as plt    
import pandas as pd
ticker = 'GLD'
begdate = '2014-11-11'
enddate = '2016-11-11'
data1 = pd.io.data.DataReader(ticker,'yahoo',dt.datetime(2014,11,11),dt.datetime(2016,11,11))
gld_df = pd.DataFrame(data1)
date_df = pd.to_datetime(list(gld_df.index))
adj_close_df = list(gld_df["Adj Close"])
plt.plot(date_df,adj_close_df)
plt.title("SPDR Gold Shares ")

Its giving me the below error. Few days back, there was no error when I had tried the same code.

runfile('D:/Quant/MSQF/4 - Algorithms 1/3-Sorting/Mini Project 2_v2.py', wdir='D:/Quant/MSQF/4 - Algorithms 1/3-Sorting')
Traceback (most recent call last):

  File "<ipython-input-10-db75eb5622f8>", line 1, in <module>
    runfile('D:/Quant/MSQF/4 - Algorithms 1/3-Sorting/Mini Project 2_v2.py', wdir='D:/Quant/MSQF/4 - Algorithms 1/3-Sorting')

  File "D:\Anaconda\lib\site-packages\spyderlib\widgets\externalshell\sitecustomize.py", line 714, in runfile
    execfile(filename, namespace)

  File "D:\Anaconda\lib\site-packages\spyderlib\widgets\externalshell\sitecustomize.py", line 89, in execfile
    exec(compile(f.read(), filename, 'exec'), namespace)

  File "D:/Quant/MSQF/4 - Algorithms 1/3-Sorting/Mini Project 2_v2.py", line 18, in <module>
    data1 = pd.io.data.DataReader(ticker,'yahoo',dt.datetime(2014,11,11),dt.datetime(2016,11,11))

AttributeError: module 'pandas.io' has no attribute 'data'

I am using Anaconda, Python 3.x . Is this a problem with Pandas or some issue with my system?

like image 827
vicky113 Avatar asked Nov 26 '16 07:11

vicky113


2 Answers

pandas has removed that functionality and it is now offered as a different package (link):

DataReader The sub-package pandas.io.data is removed in favor of a separately installable pandas-datareader package. This will allow the data modules to be independently updated to your pandas installation. The API for pandas-datareader v0.1.1 is the same as in pandas v0.16.1. (GH8961)

You should replace the imports of the following:

from pandas.io import data, wb

With the following:

from pandas_datareader import data, wb

Install pandas_datareader with pip install pandas-datareader and replace the code with the following:

from pandas_datareader import data
import datetime as dt
ticker = 'GLD'
begdate = '2014-11-11'
enddate = '2016-11-11'
data1 = data.DataReader(ticker,'yahoo',dt.datetime(2014,11,11),dt.datetime(2016,11,11))
like image 195
ayhan Avatar answered Oct 22 '22 15:10

ayhan


Well, you just need 2 things First uninstall the lib -

pip uninstall pandas-datareader

And then need to install it using pip3 (Please notice it is pip3)

pip3 install pandas-datareader

And then use -

from pandas_datareader import data, wb
#..............

#................
data.DataReader()
like image 21
Munir Hoque Avatar answered Oct 22 '22 15:10

Munir Hoque