“Speichern Sie die Plot als Bild Python Matplotlib” Code-Antworten

Python -Plot -JPG -Bild

%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

Speichern Sie die Plot als Bild 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

Ähnliche Antworten wie “Speichern Sie die Plot als Bild Python Matplotlib”

Fragen ähnlich wie “Speichern Sie die Plot als Bild Python Matplotlib”

Weitere verwandte Antworten zu “Speichern Sie die Plot als Bild Python Matplotlib” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen