设置Matplotlib颜色条大小以匹配图形我不能让像这样的imshow图上的colorbar与图形的高度相同,而不是事后使用Photoshop。我如何达到匹配的高度?
3 回答
炎炎设计
TA贡献1808条经验 获得超4个赞
您可以使用matplotlib AxisDivider轻松完成此操作。
链接页面中的示例也可以在不使用子图的情况下工作:
import matplotlib.pyplot as pltfrom mpl_toolkits.axes_grid1 import make_axes_locatableimport numpy as np plt.figure()ax = plt.gca()im = ax.imshow(np.arange(100).reshape((10,10)))# create an axes on the right side of ax. The width of cax will be 5%# of ax and the padding between cax and ax will be fixed at 0.05 inch.divider = make_axes_locatable(ax)cax = divider.append_axes("right", size="5%", pad=0.05)plt.colorbar(im, cax=cax)
月关宝盒
TA贡献1772条经验 获得超5个赞
无论显示器的大小如何,这种组合(以及接近这些组合的值)似乎“神奇地”对我来说是保持颜色条缩放到绘图。
plt.colorbar(im,fraction=0.046, pad=0.04)
它也不需要共享轴,这可以使图形超出正方形。
添加回答
举报
0/150
提交
取消