Answers for "save figure pyplot"

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
5

save matplotlib figure

plt.savefig('image.png')
Posted by: Guest on July-22-2020
0

pyplot savefig

import matplotlib.pyplot as plt
  
# creating plotting data
xaxis, yaxis =[1, 4, 9, 16, 25, 36, 49, 64, 81, 100], [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
  
# plotting 
plt.plot(xaxis, yaxis)
  
# saving the file.Make sure you 
# use savefig() before show().
plt.savefig("squares.png")
  
plt.show()
Posted by: Guest on March-31-2021

Python Answers by Framework

Browse Popular Code Answers by Language