Answers for "python save fig as png"

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
-2

savefig matplotlib python

import matplotlib.pyplot as plt
plt.figure()
plt.plot([1,2,3],[1,2,3])
plt.savefig("out.png")
Posted by: Guest on March-21-2020

Python Answers by Framework

Browse Popular Code Answers by Language