如何在子块之间创建空间?

2024-06-13 09:45:45 发布

您现在位置:Python中文网/ 问答频道 /正文

书名很能说明一切。 我有一个包含两个子块的笔记本,希望在它们之间创建一些空间。 他们彼此看得太近了。


Tags: 空间笔记本子块书名
1条回答
网友
1楼 · 发布于 2024-06-13 09:45:45

使用^{}

import matplotlib.pyplot as plt

fig, (ax1, ax2) = plt.subplots(1, 2)

ax1.plot([1,2,3], [1,2,3])
ax2.plot([1,2,3], [3,2,1])
plt.show()

enter image description here

可以使用wspace参数来增加宽度:

... # same setup as before
fig.subplots_adjust(wspace=2)
plt.show()

enter image description here

如果您想要对axes的位置有更多的控制权,那么您可以将每个轴的偏移(底部和左侧)和延伸(宽度和高度)指定为图形的百分比。

这需要一点计算来纠正:

import matplotlib.pyplot as plt

# All have the same lower border, height and width, only the distance to
# the left end of the figure differs
bottom = 0.05
height = 0.9
width = 0.15  # * 4 = 0.6 - minus the 0.1 padding 0.3 left for space
left1, left2, left3, left4 = 0.05, 0.25, 1 - 0.25 - width, 1 - 0.05 - width

rectangle1 = [left1, bottom, width, height]
rectangle2 = [left2, bottom, width, height]
rectangle3 = [left3, bottom, width, height]
rectangle4 = [left4, bottom, width, height]

# Create a 8 x 8 (quadratic) figure
plt.figure(1, figsize=(8, 8))

// Create 4 axes their position and extend is defined by the rectangles
ax1 = plt.axes(rectangle1)
ax2 = plt.axes(rectangle2)
ax3 = plt.axes(rectangle3)
ax4 = plt.axes(rectangle4)

# Let's display something in these axes.
ax1.plot([1,2,3,4])
ax2.plot([4,3,2,1])
ax3.plot([4,3,2,1])
ax4.plot([1,2,3,4])

plt.show()

enter image description here

相关问题 更多 >