No module named ‘matplotlib.finance’问题解决
最近在网课学习爬数据,从雅虎下载数据报错No module named ‘matplotlib.finance’,代码如下: from mpl_finance import quotes_historical_yahoo from datetime import date import pandas as pd today=date.today() start=(today.year-1,today.month,today.day) quotes = quotes_historical_yahoo('AXP',start,today) df=pd.DateFrame(quotes) print
用户评论