<div dir="ltr"><div class="gmail_extra">If you're using matplotlib for your plots, you can use subplots to create a horizontal (or arbitrary grid) of plots in an output cell.</div><div class="gmail_extra"><br></div><div class="gmail_extra">
Try this example <a href="http://matplotlib.org/examples/pylab_examples/subplot_demo.html">http://matplotlib.org/examples/pylab_examples/subplot_demo.html</a></div><div class="gmail_extra"><br></div><div class="gmail_extra">
but change plt.subplot(2,1,1) and plt.subplot(2,1,2) (which indicate a 2x1 grid and plot #1 and #2) to plt.subplot(1,2,1) and plt.subplot(1,2,2) which does the same in a 1x2 grid.</div><div class="gmail_extra"><br></div>
<div class="gmail_extra">
</div></div>