标签: python matplotlib
假设您需要将figure和subplot存储在变量中(以便稍后修改属性)。你怎么能让整个人物留下来并且在几毫秒之后不会很快消失?
figure
subplot
import matplotlib.pyplot as plt fig = plt.figure() ax = fig.add_subplot(2,2,1) ax.plot(1) fig.show()
答案 0 :(得分:16)
将fig更改为plt:
fig
plt
plt.show()