python中的mpl_finance模块导入错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中的mpl_finance模块导入错误相关的知识,希望对你有一定的参考价值。
我尝试过使用from matplotlib.finance import quotes_historical_yahoo_ochl
,但发现它已被弃用。因此,我已经安装了mpl_finance
并尝试了这个:
from mpl_finance import quotes_historical_yahoo_ochl
但是我收到以下错误:
ImportError: cannot import name 'quotes_historical_yahoo_ochl'
我想检查一下:
dir(mpl_finance)
并找到以下内容:
['Affine2D', 'Line2D', 'LineCollection', 'PolyCollection', 'Rectangle', 'TICKLEFT', 'TICKRIGHT', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', '_candlestick', '_check_input', '_plot_day_summary', 'absolute_import', 'candlestick2_ochl', 'candlestick2_ohlc', 'candlestick_ochl', 'candlestick_ohlc', 'division', 'index_bar', 'mcolors', 'np', 'plot_day_summary2_ochl', 'plot_day_summary2_ohlc', 'plot_day_summary_oclh', 'plot_day_summary_ohlc', 'print_function', 'unicode_literals', 'volume_overlay', 'volume_overlay2', 'volume_overlay3', 'xrange', 'zip']
请帮助我摆脱这个问题。请。
答案
由于雅虎停止提供其历史报价服务,quotes_historical_yahoo_ochl
功能停止工作。来自It was hence removed代码的mpl_finance
完全。
以上是关于python中的mpl_finance模块导入错误的主要内容,如果未能解决你的问题,请参考以下文章