亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

如何在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
镇赉县| 长汀县| 盐山县| 常德市| 凤山市| 商河县| 山丹县| 静海县| 凤阳县| 康保县| 隆林| 资阳市| 开封市| 江都市| 海城市| 余庆县| 确山县| 扶沟县| 方山县| 绵竹市| 巩义市| 麟游县| 崇明县| 南澳县| 镇康县| 宁晋县| 阜南县| 邓州市| 赤壁市| 潮州市| 江北区| 新津县| 永川市| 丽江市| 镇安县| 凯里市| 海南省| 许昌县| 壶关县| 乌恰县| 曲水县|