Answers for "how to save matplotlib figure as png"

8

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)
Posted by: Guest on September-26-2020
3

how to save matplotlib figure to png

In [5]: plt.savefig('books_read.png')
Posted by: Guest on November-17-2019
0

python plot save figure to png

from matplotlib import pyplot as plt

plt.savefig('foo.png')
plt.savefig('foo.pdf')
Posted by: Guest on April-23-2021

Code answers related to "how to save matplotlib figure as png"

Python Answers by Framework

Browse Popular Code Answers by Language