“matplot lib mehrere bilder nebeneinander” Código de respuesta

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

Respuestas similares a “matplot lib mehrere bilder nebeneinander”

Preguntas similares a “matplot lib mehrere bilder nebeneinander”

Más respuestas relacionadas con “matplot lib mehrere bilder nebeneinander” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código