阅读量:3
在Bokeh中可以使用layout
函数创建自定义布局以摆放多个图表或小部件。以下是一个示例代码:
from bokeh.io import output_file, show from bokeh.layouts import layout from bokeh.plotting import figure # 创建两个图表 plot1 = figure(plot_width=400, plot_height=400) plot1.circle([1, 2, 3], [4, 5, 6]) plot2 = figure(plot_width=400, plot_height=400) plot2.line([1, 2, 3], [4, 5, 6]) # 创建自定义布局 custom_layout = layout([[plot1, plot2]]) # 输出到HTML文件并显示 output_file("custom_layout.html") show(custom_layout)
在这个示例中,我们创建了两个图表plot1
和plot2
,然后使用layout
函数将它们放在一个自定义的布局中。最后将布局输出到HTML文件并显示出来。您可以根据需要调整图表的大小、位置和布局方式来创建各种不同的自定义布局。