how to save a matplotlib figure as png code example
Example 1: how to save plot in python
In [5]: plt.savefig('books_read.png')
Example 2: how to save matplotlib figure to png
In [5]: plt.savefig('books_read.png')
Example 3: plt.savefig
import matplotlib.pyplot as plt
plt.pie([1,2,3])
plt.savefig('name')