0
Ich versuche, mehrere Bilder in der Ipython-Zelle zum Vergleich zu plotten. Hier ist, was ich von dem unten Knoten bekam Wie wird der Bildanzeigeort in der ipython/jupyter Notebookzelle eingestellt?
import numpy as np
from matplotlib import pylab
x = np.linspace(1.0,13.0,10)
y = np.sin(x)
pylab.plot(x,y)
show()
x = np.linspace(1.0,13.0,20)
y = np.sin(x)
pylab.plot(x,y)
show()
x = np.linspace(1.0,13.0,30)
y = np.sin(x)
pylab.plot(x,y)
show()
Wie kann ich diese Bilder wie die folgenden Richtung zeichnen?