在Bokeh圖表中添加注釋或標簽可以通過使用Label
或LabelSet
來實現。下面是一個簡單的示例:
from bokeh.plotting import figure, show
from bokeh.models import Label
p = figure(plot_width=400, plot_height=400)
p.circle([1, 2, 3, 4, 5], [6, 7, 2, 4, 5])
label = Label(x=1, y=6, text='Point 1', text_font_size='10pt', text_color='red')
p.add_layout(label)
show(p)
在上面的代碼中,我們首先創建了一個figure
對象,并在圖表上繪制了一些數據點。然后創建了一個Label
對象,指定了標簽的位置、文本內容、字體大小和顏色。最后使用add_layout
方法將標簽添加到圖表中。