在 Jupyter Notebook 中显示多个图像可以通过 matplotlib 库来实现。
步骤如下:
import matplotlib.pyplot as plt
%matplotlib inline
fig, axes = plt.subplots(nrows=1, ncols=3, figsize=(12, 4))
其中,nrows
和 ncols
分别表示行数和列数,figsize
指定图像的尺寸。
axes[0].plot(x1, y1)
axes[0].set_title('图像1')
axes[1].plot(x2, y2)
axes[1].set_title('图像2')
axes[2].plot(x3, y3)
axes[2].set_title('图像3')
这里的 x1
, y1
, x2
, y2
, x3
, y3
分别是要绘制的数据。
plt.tight_layout()
plt.show()
以上步骤将在 Notebook 中显示三个图像,每个图像的标题为 '图像1'、'图像2' 和 '图像3'。你可以根据需要绘制任意数量的图像,只需要调整 nrows
和 ncols
的值,并在每个图像上设置不同的数据。
相关链接:
领取专属 10元无门槛券
手把手带您无忧上云