“Enregistrer l'intrigue en tant qu'image Python” Réponses codées

Enregistrer l'intrigue en tant qu'image Python

from matplotlib import pyplot as plt

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

Comment enregistrer la figure matplotlib sur png

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

Enregistrer l'intrigue dans Python

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

Python Plot JPG Image

%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

Enregistrer l'intrigue en tant qu'image 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

Enregistrer l'intrigue figure comme png python

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

Réponses similaires à “Enregistrer l'intrigue en tant qu'image Python”

Questions similaires à “Enregistrer l'intrigue en tant qu'image Python”

Plus de réponses similaires à “Enregistrer l'intrigue en tant qu'image Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code