我正在尝试matplotlib.finance
在 python 中导入模块,以便制作烛台 OCHL 图。我的matplotlib.pyplot
版本是 2.00。我尝试使用以下命令导入它:
import matplotlib.finance
from matplotlib.finance import candlestick_ohlc
我收到此错误:
warnings.warn(message, mplDeprecation, stacklevel=1) MatplotlibDeprecationWarning:财务模块已在 mpl 2.0 中弃用,将在 mpl 2.2 中删除。请改用 mpl_finance 模块。
然后,我尝试使用以下行,而不是在 python 中使用上述行:
import mpl_finance
我收到此错误:
ImportError:没有名为“mpl_finance”的模块
我应该怎么做才能从中导入烛台matplotlib.pyplot
?