中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

如何在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
怀化市| 温泉县| 镇雄县| 兴化市| 泰安市| 屯留县| 六枝特区| 铜陵市| 孟连| 陆丰市| 临汾市| 德保县| 家居| 安庆市| 扶风县| 逊克县| 南部县| 天镇县| 淮阳县| 乐山市| 惠来县| 大理市| 福海县| 鲜城| 连南| 景洪市| 宜宾县| 丹棱县| 柘城县| 湘阴县| 姜堰市| 阿合奇县| 渭源县| 东安县| 通州市| 东丽区| 诸城市| 金坛市| 隆安县| 东乡县| 贵阳市|