显示后更新绘图

时间:2016-11-10 11:36:06

标签: matplotlib plot

说我创建了一个情节,然后我展示了它

fig1 = plt.figure()
ax = fig1.add_subplot(111)
lt.plot(mat0[21:27,1],mat0[21:27,4],marker='s', label = "21")
lt.plot(mat0[21:27,1],mat0[21:27,3],marker='s', label = "23")
plt.plot(mat0[21:27,1],mat0[21:27,2],marker='s', label = "28")
pl.show()

然后我意识到我错过了一些情节线,我怎样才能更新图表而不经过再次绘制每一行的所有过程?

0 个答案:

没有答案