一种解决matplotlib画图出现:TypeError: ‘AxesSubplot‘ object does not support indexing错误的方法
问题出现我想使用matplotlib画5行一列的图,代码如下,在过程中,我出现了TypeError: ‘AxesSubplot’ object does not support indexing的问题,问题如下图所示。查询了目前网上的解决教程,发现都无法解决,现在提供一种我解决该问题的方法。fig, axs = plt.subplots(5, 1, sharex=True)axs[0][0].pl
·
问题出现
我想使用matplotlib画5行一列的图,代码如下,在过程中,我出现了TypeError: ‘AxesSubplot’ object does not support indexing的问题,问题如下图所示。查询了目前网上的解决教程,发现都无法解决,现在提供一种我解决该问题的方法。
fig, axs = plt.subplots(5, 1, sharex=True)
axs[0][0].plot(list1, "red")
axs[0][0].legend(["open"], loc="lower left", fontsize=11)
axs[1][0].plot(list2, "blue")
axs[1][0].legend(["close"], loc="lower left", fontsize=11)
axs[2][0].plot(list3, "green")
axs[2][0].legend(["high"], loc="lower left", fontsize=11)
axs[3][0].plot(list4, "darkmagenta")
axs[3][0].legend(["low"], loc="lower left", fontsize=11)
axs[4][0].plot(list5, "darkkhaki")
解决方法
其实,解决这个问题很简单,报的错误是:类型错误:"AxesSubplot"对象不支持索引,是什么意思呢?如上所述,我想画的是5行一列的图,因此,不需要索引列,只需要索引行即可,是什么意思呢?我举个例子:
- 就像上面的代码axs[0][0].plot(list1, “red”),第一个中括号代表索引行,第二个中括号代表索引列,而我们定义的是具有5行一列子图的图,所以不需要索引列,因此上面的代码改成axs[0].plot(list1, “red”)即可正确运行。如果你们定义了,比如:3行3列的图片,这时候就需要索引列了。因此这个报错就提示了这样的信息。
总的来说,就是去掉索引列即可,axs[0][0].plot(list1, “red”) -> axs[0].plot(list1, “red”)
正确运行画的图片如下:
以上就是问题的出现和解决方法之一。
更多推荐
已为社区贡献2条内容
所有评论(0)