Answers for "matplotlib savefig and close"

1

matplotlib savefig not working

# Call plt.show() after plt.savefig("filename.png")
# (Because plt.show() clears the plot from memory)
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