具有相同大小的bokeh网格图的问题

时间:2019-07-16 16:37:00

标签: python bokeh

我设法使用gridplot在Bokeh中显示多个轴。但是,在添加了颜色条和标签之后,地块的大小就不一样了。其中一些很狭窄。我希望它们彼此大小相同。我不确定是否是由于标签和颜色条所致。

Image of plot with different subplot widths.

for comp in idxComps: #adding labels
       if comp % numCols == 0:
            fig[comp].yaxis.axis_label = axLabel[1]
        if comp >= (numRows-1) * numCols:
            fig[comp].xaxis.axis_label = axLabel[0]

fig[comp].image(image=[values[..., comp].transpose()],
                      x=lower[0], y=lower[1],
                      dw=(upper[0]-lower[0]), dh=(upper[1]-lower[1]),
                      palette="Inferno256")
mapper = LinearColorMapper(palette='Inferno256',
                           low=np.amin(values[...,comp]), 
                           high=np.amax(values[...,comp]))
color_bar = ColorBar(color_mapper=mapper, 
                     width=7, 
                     location=(0,0), 
                     formatter=BasicTickFormatter(precision=1), 
                     ticker=BasicTicker(desired_num_ticks=4), 
                     label_standoff=12, 
                     border_line_color=None) #adding a color bar

fig[comp].add_layout(color_bar, 'right')


gridplot(children=fig, toolbar_location=None, ncols=numCols, sizing_mode="scale_height", merge_tools=True)

1 个答案:

答案 0 :(得分:0)

在Bokeh的最新版本(1.1或更高版本)中,您可以将frame_widthframe_height值显式传递给figure,以控制“内部”绘图区域的尺寸。