figure.savefig code example
Example 1: python save figure
plt.savefig("/path/to/output/directory/figure.png")
import matplotlib.pyplot as plt
plt.figure()
plt.plot(range(5))
plt.savefig("~/Documents/figure.png", dpi=300)
Example 2: save matplotlib figure
plt.savefig('image.png')
Example 3: plt.savefig
import matplotlib.pyplot as plt
plt.pie([1,2,3])
plt.savefig('name')
Example 4: pyplot savefig
import matplotlib.pyplot as plt
xaxis, yaxis =[1, 4, 9, 16, 25, 36, 49, 64, 81, 100], [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
plt.plot(xaxis, yaxis)
plt.savefig("squares.png")
plt.show()
Example 5: savefig matplotlib python
import matplotlib.pyplot as plt
plt.figure()
plt.plot([1,2,3],[1,2,3])
plt.savefig("out.png")