Currently, when creating two consecutive plots in an ipython notebook, they are displayed one below the other:
Yes, you can do this:
In [3]: import numpy as np ...: xs = np.linspace(0,100,100) ...: fig, axs = plt.subplots(nrows=1, ncols=2) ...: axs[0].plot(xs, xs * xs) ...: axs[1].plot(xs, np.sqrt(xs)) ...:
Output: