我想绘制数据,然后创建一个新的图形和plot data2,最后回到原来的plot和plot data3,就像这样:
import numpy as np
import matplotlib as plt
x = arange(5)
y = np.exp(5)
plt.figure()
plt.plot(x, y)
z = np.sin(x)
plt.figure()
plt.plot(x, z)
w = np.cos(x)
plt.figure("""first figure""") # Here's the part I need
plt.plot(x, w)
供你参考我如何告诉matplotlib我已经完成了一个情节?做了类似的事情,但不是完全一样!它不允许我进入原始的区域。