gpt4 book ai didi

python - 使用 matplotlib 子图时减少行之间的间隙?

转载 作者:行者123 更新时间:2023-11-30 22:37:27 26 4
gpt4 key购买 nike

我的子图结果 subplot

我的代码

fig,ax = plt.subplots(rows,cols, figsize = [24,24])
plt.subplots_adjust(hspace=0, wspace=0)

for i in range(cols):
step = 6
ind = i*step
ax[0,i].imshow(a[ind,:,:],cmap='gray')
ax[0,i].axis('off')

ax[1,i].imshow(b[ind,:,:],cmap='gray')
ax[1,i].axis('off')

ax[2,i].imshow(c[ind,:,:],cmap='gray')
ax[2,i].axis('off')

但是,似乎 plt.subplots_adjust(hspace=0, wspace=0) 根本不起作用。我注意到它强制图形具有相等的 x 和 y 大小,你能帮我纠正这个问题吗?

最佳答案

您可以在垂直方向缩小图形尺寸,例如

fig,ax = plt.subplots(rows,cols, figsize = [24,12])

或者您可以保留正方形图形大小,但在子图周围留出更多边距

plt.subplots_adjust(bottom=0.3, top=0.7, hspace=0)

关于python - 使用 matplotlib 子图时减少行之间的间隙?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43893450/

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