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])
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])