Python - 如何在散景中向我的vbar添加注释?

时间:2018-02-12 13:18:28

标签: python graph bokeh

这是以下图表的代码

x= np.linspace(0.5, 6, 5)
y= rf[:5]

p_importance =figure()

p_importance.vbar(
    x = x,
    top = y,
    width = 1
)

enter image description here

我的列表保存在此处,如何将以下内容添加为图例

 new_labels = list(rf[:5].index)

1 个答案:

答案 0 :(得分:0)

没有内置方法可以做到这一点。您需要使用自定义TickFormatter并将标签传递给它。以下问题使用FuncTickFormatter

How do I use custom labels for ticks in Bokeh?