怎么在python3中使用pandas獲取股票數(shù)據(jù)?針對(duì)這個(gè)問(wèn)題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問(wèn)題的小伙伴找到更簡(jiǎn)單易行的方法。

如下所示:
from pandas_datareader import data, wb
from datetime import datetime
import matplotlib.pyplot as plt
end = datetime.now()
start = datetime(end.year - 1, end.month, end.day)
alibaba = data.DataReader('BABA', 'yahoo', start, end)
alibaba['Adj Close'].plot(legend=True, figsize=(10,4))
plt.show()pandas版本0.23.1
進(jìn)入命令行窗口,在python安裝目錄下,進(jìn)入Scripts,輸入命令pip install pandas

pandas_datareader版本0.6.0
進(jìn)入命令行窗口,在python安裝目錄下,進(jìn)入Scripts,輸入命令pip install pandas_datareader
問(wèn)題:
運(yùn)行時(shí)報(bào)錯(cuò):ImportError: cannot import name 'is_list_like'
解決:
修改D:\Python36\Lib\site-packages\pandas_datareader\fred.py
將from pandas.core.common import is_list_like改為from pandas.api.types import is_list_like
問(wèn)題:
運(yùn)行時(shí)報(bào)錯(cuò):raise ImmediateDeprecationError(DEP_ERROR_MSG.format('Yahoo Daily'))
解決:
修改D:\Python36\Lib\site-packages\pandas_datareader\data.py
注釋掉raise ImmediateDeprecationError(DEP_ERROR_MSG.format('Yahoo Daily'))
關(guān)于怎么在python3中使用pandas獲取股票數(shù)據(jù)問(wèn)題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒(méi)有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。
網(wǎng)站名稱:怎么在python3中使用pandas獲取股票數(shù)據(jù)-創(chuàng)新互聯(lián)
鏈接分享:http://chinadenli.net/article14/edsge.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信公眾號(hào)、用戶體驗(yàn)、網(wǎng)站策劃、網(wǎng)站營(yíng)銷、外貿(mào)網(wǎng)站建設(shè)、網(wǎng)站改版
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容