matplot lib mehrere bilder nebeneinander

Solutions on MaxInterview for matplot lib mehrere bilder nebeneinander by the best coders in the world

showing results for - "matplot lib mehrere bilder nebeneinander"
María Paula
12 Jun 2018
1plt.subplot(121)  #sublot(Anzahl Zeilen Anzahl Spalten Bild Nummer)
2plt.plot(x, y1)
3plt.title('Sinus')
4plt.xlim([0,2*np.pi])
5
6plt.subplot(122)
7plt.plot(x, y2)
8plt.title('Cosinus')
9plt.xlim([0,2*np.pi])
Eloane
14 Jan 2017
1%matplotlib inline
2plt.subplots_adjust(wspace=0.5,hspace=0.5)
3
4plt.figure(figsize=(8,8)) 
5
6plt.subplot(221) 
7plt.plot(x, y1)
8plt.title('Sinus')
9plt.xlim([0,2*np.pi])