如何在ipython / jupyter笔记本单元格中设置图片显示位置?

时间:2016-04-08 15:23:29

标签: python matplotlib ipython jupyter-notebook

我尝试在ipython单元格中绘制多张图片进行比较。以下是我从以下节点enter image description here

获得的内容
CGAL::Polyhedron_3

如何将这些图片绘制为以下方向?

1 个答案:

答案 0 :(得分:1)

简短的回答是,此时你不能......除非你制作一个包含3个子图的数字。

也许这样:

import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline

f, (ax1, ax2, ax3) = plt.subplots(1,3, figsize=(20,5))

x = np.linspace(1.0,13.0,10)
y = np.sin(x)
ax1.plot(x,y)

x = np.linspace(1.0,13.0,20)
y = np.sin(x)
ax2.plot(x,y)

x = np.linspace(1.0,13.0,30)
y = np.sin(x)
ax3.plot(x,y)

plt.show()

enter image description here