热图其他页面(a4纵向),查找相同尺寸的y点

时间:2018-09-27 09:52:28

标签: python matplotlib heatmap

我正在尝试实现适合a4纸张大小的gridspec,也适用于其他页面。 如果我获得一页或更少页面的全部内容,则“ y-ticksize”应该看起来相同。

此刻,如果我添加内容较少的第二页,它会放大以填满整个网格单元/页面。

gs = gridspec.GridSpec(2,2, height_ratios=[0.02,1], 
                       width_ratios=[0.9,0.02])

gs.update(left=0.1, right=0.95, bottom=0.08, top=0.93,
          wspace=0.02, hspace=0.03)
...

fig.set_figheight(11.69)
fig.set_figwidth(8.27)

plt.savefig('HEATMAP.pdf', dpi=400, facecolor='w', edgecolor='w',
    orientation='portrait', papertype='a4', format='pdf',
    transparent=False, bbox_inches=None, pad_inches=0.1,
    frameon=None, metadata=None)

热图看起来像

enter image description here

任何想法如何实现?如果您需要更多输入/详细信息,请告诉我,我尝试编辑我的问题。感谢您的帮助!

想法:如果内容不像每页81个最大值中的81个,也许我可以在页面底部添加一个额外的网格单元格并放大此空网格单元格?

0 个答案:

没有答案