要在Bokeh中創建分組或嵌套的條形圖,可以通過使用vbar
函數來實現。以下是一個示例代碼,演示如何創建一個分組的條形圖:
from bokeh.plotting import figure, show
from bokeh.io import output_notebook
output_notebook()
fruits = ['Apples', 'Oranges', 'Bananas']
years = ['2015', '2016', '2017']
data = {'fruits' : fruits,
'2015' : [2, 1, 4],
'2016' : [5, 3, 2],
'2017' : [3, 2, 5]}
p = figure(x_range=fruits, plot_height=250, title="Fruit Counts by Year",
toolbar_location=None, tools="")
p.vbar(x='fruits', top='2015', width=0.2, source=data, color="red", legend_label="2015")
p.vbar(x='fruits', top='2016', width=0.2, source=data, color="blue", legend_label="2016", alpha=0.5)
p.vbar(x='fruits', top='2017', width=0.2, source=data, color="green", legend_label="2017")
p.xgrid.grid_line_color = None
p.y_range.start = 0
p.y_range.end = 10
p.legend.location = "top_left"
p.legend.orientation = "horizontal"
show(p)
這段代碼將創建一個簡單的分組條形圖,其中每個水果(蘋果,橙子和香蕉)在2015年,2016年和2017年的數量將以不同的顏色顯示。可以根據需要修改顏色、寬度和其他參數來定制圖表。