“plt.saveFig df.Pot.” Código de respuesta

plt.saveFig df.Pot.

plot = dtf.plot()
fig = plot.get_figure()
fig.savefig("output.png")
Successful Salamander

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()
Odd Okapi

SaveFig matplotlib python

import matplotlib.pyplot as plt
plt.figure()
plt.plot([1,2,3],[1,2,3])
plt.savefig("out.png")
Tremendous Enceladus

Respuestas similares a “plt.saveFig df.Pot.”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código