import matplotlib.pyplot as plt
a = plt.figure(1)
plt.plot([1,2,3,4])
a.show()
关闭画布后,我可以使用a.show()随时显示存储在变量a中的数字,但是如何编辑这个数字呢?
答案 0 :(得分:1)
与大多数matplotlib一样,您应该直接跟踪图形和轴对象。你可以做任何事情"
所以你的例子变成了:
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
ax.plot([1,2,3,4])
fig.show()
# <close the figure>
ax.set_xlabel('Post-mortem')