gpt4 book ai didi

python - python中带有gridspec.GridSpec的变量wspace

转载 作者:行者123 更新时间:2023-12-05 00:59:53 24 4
gpt4 key购买 nike

我想在 matplotlib 中使用 GridSpec 创建一个变量(两个不同的)wspace。

我想实现以下目标: Goal

到目前为止,我正在使用以下内容:

gs1 = gridspec.GridSpec(6, 3, width_ratios=[1.5,1,1])
gs1.update(wspace=0.4, hspace=0.3)
ax1 = fig.add_subplot(gs1[0:2,0])
ax2 = fig.add_subplot(gs1[2:4,0])
ax3 = fig.add_subplot(gs1[4:6,0])
ax4 = fig.add_subplot(gs1[0:3,1])
ax5 = fig.add_subplot(gs1[3:6,1])
ax6 = fig.add_subplot(gs1[0:3,2])
ax7 = fig.add_subplot(gs1[3:6,2])

知道如何在我惊人的手绘图中获得以绿色突出显示的两个不同空间吗?

非常感谢!

山姆

最佳答案

您可以使用 2 个 GridSpec,一个包含一列和三行,一个包含两行和两列。然后,您可以让第一个仅延伸到图形的一半以下,并从图形宽度的一半开始第二个。 left 和 right 参数之间的差异将是间距。

import matplotlib.pyplot as plt
from matplotlib.gridspec import GridSpec

fig = plt.figure()
gs1 = GridSpec(3, 1, right=0.4)
gs2 = GridSpec(2, 2, left=0.5)


ax1 = fig.add_subplot(gs1[0,0])
ax2 = fig.add_subplot(gs1[1,0])
ax3 = fig.add_subplot(gs1[2,0])
ax4 = fig.add_subplot(gs2[0,0])
ax5 = fig.add_subplot(gs2[0,1])
ax6 = fig.add_subplot(gs2[1,0])
ax7 = fig.add_subplot(gs2[1,1])

plt.show()

enter image description here

同样可以通过首先定义一个包含两列的“外部”gridspec 并将一个内部 gridspec 放入其中来实现。

import matplotlib.pyplot as plt
from matplotlib.gridspec import GridSpec, GridSpecFromSubplotSpec

fig = plt.figure()
gs = GridSpec(1, 2, width_ratios=[1.5,2], wspace=0.3)

gs1 = GridSpecFromSubplotSpec(3, 1, subplot_spec=gs[0])
gs2 = GridSpecFromSubplotSpec(2, 2, subplot_spec=gs[1])

ax1 = fig.add_subplot(gs1[0,0])
ax2 = fig.add_subplot(gs1[1,0])
ax3 = fig.add_subplot(gs1[2,0])
ax4 = fig.add_subplot(gs2[0,0])
ax5 = fig.add_subplot(gs2[0,1])
ax6 = fig.add_subplot(gs2[1,0])
ax7 = fig.add_subplot(gs2[1,1])

plt.show()

关于python - python中带有gridspec.GridSpec的变量wspace,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51782909/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com