我有一个对象fig2,它是一个类matplotlib.axes.axessubplot,但是当我尝试执行fig2.show()时,python说axessubplot对象没有属性显示。如何显示AxesSubplot?
答案 0 :(得分:33)
你应该调用matplotlib.pyplot.show()
,这是一种显示所有数字的方法。
如果您已导入plt
,则:
import matplotlib.pyplot as plt
# create fig1 (of type plt.figure)
# create fig2
plt.show() # will display fig1 and fig2 in different windows
答案 1 :(得分:8)
或者,你可以调用fig2的figure属性:
z-index