“Matplot Lib Mehrere Bilder Nebeneinander” Respostas de código

Matplot Lib Mehrere Bilder Nebeneinander

plt.subplot(121)  #sublot(Anzahl Zeilen Anzahl Spalten Bild Nummer)
plt.plot(x, y1)
plt.title('Sinus')
plt.xlim([0,2*np.pi])

plt.subplot(122)
plt.plot(x, y2)
plt.title('Cosinus')
plt.xlim([0,2*np.pi])
Zany Zebra

Matplot Lib Mehrere Bilder Nebeneinander

%matplotlib inline
plt.subplots_adjust(wspace=0.5,hspace=0.5)

plt.figure(figsize=(8,8)) 

plt.subplot(221) 
plt.plot(x, y1)
plt.title('Sinus')
plt.xlim([0,2*np.pi])
Zany Zebra

Respostas semelhantes a “Matplot Lib Mehrere Bilder Nebeneinander”

Perguntas semelhantes a “Matplot Lib Mehrere Bilder Nebeneinander”

Mais respostas relacionadas para “Matplot Lib Mehrere Bilder Nebeneinander” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código