Closed jkitchin closed 7 years ago
import matplotlib.pyplot as plt
plt.figure(1) plt.plot([1,2,3,4])
plt.figure(2) plt.plot([1,1,1,1])
plt.show()
to fix, show needs to access all the figures and save each one.
eliminated publish
import matplotlib.pyplot as plt
plt.figure(1) plt.plot([1,2,3,4])
plt.figure(2) plt.plot([1,1,1,1])
plt.show()
to fix, show needs to access all the figures and save each one.