gpt4 book ai didi

python - matplotlib 改变子图的大小

转载 作者:行者123 更新时间:2023-11-28 16:32:23 24 4
gpt4 key购买 nike

我尝试用不同的子图制作一个图形。在示例中,左侧面板是 imshow 图像,它有点太小了。我怎样才能放大 ax1?为了使颜色条位于 ax2ax3 的 x 轴水平?

代码和输出是:

import matplotlib.pyplot as plt
import numpy as np


fig=plt.figure(figsize=(15,5.5))
ax1=plt.subplot2grid((1,3),(0,0))
ax2=plt.subplot2grid((1,3),(0,1))
ax3=plt.subplot2grid((1,3),(0,2))


image=np.random.random_integers(1,10,size=(100,100))
cax=ax1.imshow(image,interpolation="none",aspect='equal')
cbar=fig.colorbar(cax,ax=ax1,orientation=u'horizontal')

x=np.linspace(0,1)
ax2.plot(x,x**2)
ax3.plot(x,x**3)

plt.show()

enter image description here

最佳答案

this answer 中得到启发,您可以使用 AxisDivider 调整 colorbar 的布局.

import matplotlib.pyplot as plt
import numpy as np
from mpl_toolkits.axes_grid1 import make_axes_locatable

fig=plt.figure(figsize=(15,5.5))
ax1=plt.subplot2grid((1,3),(0,0))
ax2=plt.subplot2grid((1,3),(0,1))
ax3=plt.subplot2grid((1,3),(0,2))

image=np.random.random_integers(1,10,size=(100,100))
im = ax1.imshow(image,interpolation="none",aspect='equal')

divider = make_axes_locatable(ax1)
cax = divider.append_axes("bottom",size="5%",pad=0.7)
cbar=fig.colorbar(im,cax=cax,orientation=u'horizontal')

x=np.linspace(0,1)
ax2.plot(x,x**2)
ax3.plot(x,x**3)

plt.show()

enter image description here

pad=0.7 在我看来是正确的。您可能需要尝试使用该参数以及 figsize 高度,以完全按照您想要的方式获得它。

关于python - matplotlib 改变子图的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30576628/

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