Answers for "matplotlib savefig"

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
5

save matplotlib figure

plt.savefig('image.png')
Posted by: Guest on July-22-2020
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
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
0

plt.savefig df.plot

plot = dtf.plot()
fig = plot.get_figure()
fig.savefig("output.png")
Posted by: Guest on July-27-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