说我创建了一个情节,然后我展示了它
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()
然后我意识到我错过了一些情节线,我怎样才能更新图表而不经过再次绘制每一行的所有过程?