variants of savefig matplotlib code example
Example 1: save matplotlib figure
plt.savefig('image.png')
Example 2: savefig matplotlib python
import matplotlib.pyplot as plt
plt.figure()
plt.plot([1,2,3],[1,2,3])
plt.savefig("out.png")
plt.savefig('image.png')
import matplotlib.pyplot as plt
plt.figure()
plt.plot([1,2,3],[1,2,3])
plt.savefig("out.png")