Verileri çizmek, daha sonra yeni bir şekil oluşturmak ve data2 çizmek istiyorum ve nihayet orijinal arsa ve arsa data3'e geri dönelim:
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)
FYI Matplotlib'e bir komplo ile bittiğimi nasıl anlarım? benzer bir şey yapar, ama tam olarak değil! O orijinal arsaya erişmeme izin vermiyor.