为了账号安全,请及时绑定邮箱和手机立即绑定

设置Matplotlib颜色条大小以匹配图形

设置Matplotlib颜色条大小以匹配图形

肥皂起泡泡 2019-08-06 15:38:03
设置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)


查看完整回答
反对 回复 2019-08-06
?
月关宝盒

TA贡献1772条经验 获得超5个赞

无论显示器的大小如何,这种组合(以及接近这些组合的值)似乎“神奇地”对我来说是保持颜色条缩放到绘图。

plt.colorbar(im,fraction=0.046, pad=0.04)

它也不需要共享轴,这可以使图形超出正方形。


查看完整回答
反对 回复 2019-08-06
  • 3 回答
  • 0 关注
  • 2896 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信