股票

AttributeError: Unknown property axisbg

学着画蜡烛图,结果碰到不少的错误,比如这个:

AttributeError: Unknown property axisbg

matplotlib.pyplot.subplot2grid()的属性栏里面已经没有了axisbg这个参数,查询matplotlib 2.2.0的API,有这么一句话:

Color of Axes
The axisbg and axis_bgcolor properties on Axes have been deprecated in favor of facecolor.

原来axisbg已经被facecolor替换掉了:

ax1 = plt.subplot2grid((6,4), (1,0), rowspan=4, colspan=4, facecolor=’#07000d’)

同样的,matplotlib里面也去掉了 finance包,现在有个独立的库 mpl_finance,如果想用原来finance库中的函数,比如 candlestick_ochl,就需要从mpl_finance中导入了。

打赏
原文链接:,转发请注明来源!

发表评论

  • 2 Responses to “AttributeError: Unknown property axisbg”
    • Jon

      请问如何导入啊?本人用的是Ubuntu 16.04 LTS, Python 3.5

      回复
      • 安装库,然后 import,但是不建议用了,老了不更新了毕竟

        美多多 回复私信