如何在 Bokeh 中添加文本注释?

How can I add text annotation in Bokeh?

我正在寻找 Matplotlib 类型 1 text annotation in Bokeh, but I couldn't find it in the their user guide 2 或在参考文献中。

此 'text' 功能属于 'glyphs':您将找到页面 here

从版本 0.12.2 开始,要添加文本注释,您将使用 "label" 字形。

from bokeh.models import Label

p = figure(...)

mytext = Label(x=70, y=70, text='here your text')

p.add_layout(mytext)

show(p)

请在文档中找到完整示例: http://docs.bokeh.org/en/latest/docs/user_guide/annotations.html#userguide-annotations