Jupyter Notebook: Output image in previous line
问题 I want to plot some image side by side in my jupyter notebook. So it can save some space for display. For example This is done through fig = plt.figure(figsize=(14,3)) ax1 = fig.add_subplot(1,3,1,projection = '3d') ax2 = fig.add_subplot(1,3,2) ax3 = fig.add_subplot(1,3,3) And this makes them in one .png file. However, later on in writing the paper, I may only want part of the image. For example, the 2nd or the 3rd in previous plot. And this requires me to crop the image manually . One way I