“Guardar la trama como imagen python” Código de respuesta

Guardar la trama como imagen python

from matplotlib import pyplot as plt

plt.savefig('Path/FigureName.png')
Gabriel Juri

cómo guardar la figura de matplotlib a PNG

In [5]: plt.savefig('books_read.png')
Black Backed Magpie

Guardar la trama en Python

plt.savefig('books_read.png')
Bored Coder

Python Plot JPG Imagen

%pylab inline
import matplotlib.pyplot as plt
import matplotlib.image as mpimg
img = mpimg.imread('your_image.png')
imgplot = plt.imshow(img)
plt.show()
firststef

Guardar trazado como imagen Python matplotlib

import matplotlib.pyplot as plt
import numpy as np

x = np.arange(0, 10, 0.1)
y = np.sin(x)

plt.plot(x, y)
plt.savefig('saved_figure.png')
namansolanki059

Guardar la figura complementaria como Png Python

fig.write_image("images/fig1.png")
Jolly Jellyfish

Respuestas similares a “Guardar la trama como imagen python”

Preguntas similares a “Guardar la trama como imagen python”

Más respuestas relacionadas con “Guardar la trama como imagen python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código