Answers for "matplotlib figure to file"

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