save a pyplot figure code example

Example 1: how to save plot in python

In [5]: plt.savefig('books_read.png')

Example 2: python save figure

# Basic syntax:
plt.savefig("/path/to/output/directory/figure.png")

# Example usage:
import matplotlib.pyplot as plt
plt.figure()
plt.plot(range(5))
plt.savefig("~/Documents/figure.png", dpi=300)

Example 3: save matplotlib figure

plt.savefig('image.png')

Example 4: save plot in python

plt.savefig('books_read.png')

Example 5: savefig matplotlib python

import matplotlib.pyplot as plt
plt.figure()
plt.plot([1,2,3],[1,2,3])
plt.savefig("out.png")