plt.savefig browse code example
Example 1: save matplotlib figure
plt.savefig('image.png')
Example 2: plt.savefig
import matplotlib.pyplot as plt
plt.pie([1,2,3])
plt.savefig('name')
plt.savefig('image.png')
import matplotlib.pyplot as plt
plt.pie([1,2,3])
plt.savefig('name')