91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

如何在Bokeh中創建分組或嵌套的條形圖

小樊
84
2024-05-20 11:39:35
欄目: 編程語言

要在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年的數量將以不同的顏色顯示。可以根據需要修改顏色、寬度和其他參數來定制圖表。

0
津南区| 阳山县| 高台县| 横山县| 邢台市| 溧水县| 石狮市| 温州市| 珠海市| 金乡县| 山西省| 文成县| 阳原县| 任丘市| 临湘市| 崇仁县| 农安县| 绥德县| 延边| 肇庆市| 绥中县| 中西区| 根河市| 军事| 监利县| 通州区| 枣强县| 沙湾县| 武穴市| 正宁县| 同德县| 祁东县| 伊通| 陵川县| 长岭县| 远安县| 冷水江市| 江陵县| 柘城县| 天台县| 瑞安市|