使用 Bokeh 将图例定位在绘图区域之外

新手上路,请多包涵

我正在按照 此处 找到的示例进行绘图

不幸的是,我有 17 条曲线需要显示,图例与它们重叠。我知道我可以像 这里 一样创建一个可以显示在绘图区域外的图例对象,但是我有 17 条曲线,所以使用循环要方便得多。

你知道如何结合这两种方法吗?

原文由 Despe1990 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 490
2 个回答

好的,我找到了解决方案。请参阅下面的代码,我刚刚修改了交互式图例示例:

 import pandas as pd
from bokeh.palettes import Spectral4
from bokeh.plotting import figure, output_file, show
from bokeh.sampledata.stocks import AAPL, IBM, MSFT, GOOG
from bokeh.models import Legend
from bokeh.io import output_notebook

output_notebook()

p = figure(plot_width=800, plot_height=250, x_axis_type="datetime", toolbar_location='above')
p.title.text = 'Click on legend entries to mute the corresponding lines'

legend_it = []

for data, name, color in zip([AAPL, IBM, MSFT, GOOG], ["AAPL", "IBM", "MSFT", "GOOG"], Spectral4):
    df = pd.DataFrame(data)
    df['date'] = pd.to_datetime(df['date'])
    c = p.line(df['date'], df['close'], line_width=2, color=color, alpha=0.8,
           muted_color=color, muted_alpha=0.2)
    legend_it.append((name, [c]))

legend = Legend(items=legend_it)
legend.click_policy="mute"

p.add_layout(legend, 'right')

show(p)

原文由 Despe1990 发布,翻译遵循 CC BY-SA 4.0 许可协议

我想扩展 joelostbloms 的回答。也可以从现有绘图中提取图例,并在创建绘图后将其添加到其他地方。

 from bokeh.palettes import Category10
from bokeh.plotting import figure, show
from bokeh.sampledata.iris import flowers

# add a column with colors to the data
colors = dict(zip(flowers['species'].unique(), Category10[10]))
flowers["color"] = [colors[species] for species in flowers["species"]]

# make plot
p = figure(height=350, width=500)
p.circle("petal_length", "petal_width", source=flowers, legend_group='species',
         color="color")
p.add_layout(p.legend[0], 'right')

show(p)

原文由 Sam De Meyer 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题