'Figure' object has no attribute 'show'
时间: 2023-11-11 11:04:01 浏览: 149
Python 从attribute到property详解
这个错误通常是因为在使用matplotlib绘图时,使用了错误的方法。在matplotlib中,Figure对象没有show()方法,而是使用plt.show()方法来显示图像。如果你想显示Figure对象,你可以使用canvas.tostring_rgb()方法将其转换为RGB格式的字符串,然后使用PIL库中的Image.fromstring()方法将其转换为图像对象并显示。
阅读全文