Bokeh 将折线图和条形图与悬停结合起来

问题描述 投票:0回答:1

我想用悬停工具创建一个组合的条形图和折线图。因为我想添加一个悬停工具,所以我最初创建了一个图形,然后尝试添加带有 vbar 的条和带有 line_glyph 的线。 这不起作用,因为它只会创建一个空白的白色画布。

from bokeh.charts import Bar, output_file, show
from bokeh.plotting import figure
from bokeh.models.ranges import Range1d

from bokeh.models import ColumnDataSource, HoverTool
from bokeh.models.glyphs import Line as Line_glyph

import pandas as pd
import numpy as np

data_2015_2016=pd.DataFrame({
    'year':[2015,2015,2015,2015,2015],
    'volume_neutral':[420,430,440,400,np.nan],
    'volume_promo':[np.nan,np.nan,np.nan,np.nan,2000],
    'volume_neutral_promo': [420,430,440,400,2000],
    'Promo':['No','No','No','No','Yes'],
    'Product':['Lemonade','Lemonade','Lemonade','Lemonade','Lemonade'],
    'yw':['2015-W01','2015-W02','2015-W03','2015-W04','2015-W05']
})  

hover=HoverTool(
    tooltips=[
        ( 'Date',   '@yw'            ),
        ( 'Volume (in kg)',  '@volume_neutral_promo' ), # use @{ } for field names with spaces
        ( 'Promo', '@Promo'      ),
        ( 'Product', '@Product'      )
    ])

p = figure(plot_width=1000, plot_height=800, tools=[hover],
           title="Weekly Sales 2015-2016",toolbar_location="below")

source = ColumnDataSource(data=data_2015_2016)

#Bar Chart
#This worked however I donno how to combine it with a hoover 
#p.Bar = Bar(data_2015_2016, label='yw', values='volume_promo', title="Sales",legend=False,plot_width=1000, plot_height=800)

p.vbar(x='yw', width=0.5, bottom=0,top='volume_promo', color="firebrick",source=source)



# create a line glyph object which references columns from source data
glyph = Line_glyph(x='yw', y='volume_neutral', line_color='green', line_width=2)

# add the glyph to the chart
p.add_glyph(source, glyph)

p.xaxis.axis_label = "Week and Year"


# change just some things about the y-axes
p.yaxis.axis_label = "Volume"
p.yaxis.major_label_orientation = "vertical"

p.y_range = Range1d(0, max(data_2015_2016.volume_neutral_promo))
output_file("bar_line.html")


show(p)
python bokeh
1个回答
2
投票

您的代码有一些问题:

  • 您混淆了一些列名称,例如

    volume_neutral_promo
    是您的数据源中的实际内容,但您错误地引用了字形
    volume_promo_neutral

  • 如果你想使用带有

    bokeh.plotting
    图的分类范围,你必须明确说明:

    p = figure(plot_width=1000, plot_height=800, tools=[hover],
               title="Weekly Sales 2015-2016",toolbar_location="below",
    
               # this part is new
               x_range=['2015-W01','2015-W02','2015-W03','2015-W04','2015-W05'])
    

这是您更新的完整代码。我已经删除了关于

bokeh.charts
的部分,因为我不建议再使用该 API(此时它基本上没有维护)。我还使用了更简单的
p.line
而不是低级
Line
字形:

from numpy import nan
import pandas as pd

from bokeh.io import output_file, show
from bokeh.models import ColumnDataSource, HoverTool
from bokeh.plotting import figure

data_2015_2016 = pd.DataFrame({
    'year': [2015, 2015, 2015, 2015, 2015],
    'volume_neutral': [420, 430, 440, 400, nan],
    'volume_promo': [nan, nan, nan, nan, 2000],
    'volume_neutral_promo': [420, 430, 440, 400, 2000],
    'Promo': ['No', 'No', 'No', 'No', 'Yes'],
    'Product': ['Lemonade', 'Lemonade', 'Lemonade', 'Lemonade', 'Lemonade'],
    'yw': ['2015-W01', '2015-W02', '2015-W03', '2015-W04', '2015-W05']
})

source = ColumnDataSource(data=data_2015_2016)

hover=HoverTool(tooltips=[
    ( 'Date',           '@yw'                   ),
    ( 'Volume (in kg)', '@volume_neutral_promo' ),
    ( 'Promo',          '@Promo'                ),
    ( 'Product',        '@Product'              ),
])

p = figure(plot_width=1000, plot_height=800, tools=[hover],
           title="Weekly Sales 2015-2016",toolbar_location="below",
           x_range=['2015-W01', '2015-W02', '2015-W03', '2015-W04', '2015-W05'])

p.vbar(x='yw', width=0.5, bottom=0, top='volume_promo', color="firebrick", source=source)
p.line(x='yw', y='volume_neutral', line_color='green', line_width=2, source=source)

p.xaxis.axis_label = "Week and Year"
p.yaxis.axis_label = "Volume"
p.yaxis.major_label_orientation = "vertical"

p.y_range.start = 0
p.y_range.range_padding = 0

output_file("bar_line.html")

show(p)

这将导致以下带有悬停工具的绘图:

© www.soinside.com 2019 - 2024. All rights reserved.