在循环中添加新轴后重绘plt图

时间:2019-09-15 02:51:54

标签: matplotlib jupyter-notebook

花了几个小时之后,我仍然无法弄清楚这个看似简单的问题。这是我要制作的一小段代码(我以jupyter笔记本电脑的形式运行它):

import matplotlib.pyplot as plt
import numpy as np

fig = plt.figure()
for i in range(1, 11):
  ax = fig.add_subplot(1, 10, i)
  fig.canvas.draw()
  plt.draw()
  time.sleep(1)

在单元格完成后,我看到了整个图形: enter image description here

但是我想在每次添加新轴时都重新绘制图像。我问了太多matplotlib吗?

0 个答案:

没有答案