Answers for "save specific figure matplotlib"

-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

Code answers related to "save specific figure matplotlib"

Python Answers by Framework

Browse Popular Code Answers by Language