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])
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])
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])
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us