gpt4 book ai didi

bokeh - 如何绘制引导线/ Bokeh ?

转载 作者:行者123 更新时间:2023-12-02 06:57:09 26 4
gpt4 key购买 nike

我用 bokeh.plotting.Figure.line 画了下面的图。我如何添加垂直引用线来强调 Feb/14 的一个点?

enter image description here

这是另一个情节。这是 bokeh.charts.Bar。我想添加水平指南以强调 50 点。我搜索了 bokeh doc但没有找到相关的 API 引用资料。如果有人就此向我提出意见,我将不胜感激。

enter image description here

最佳答案

我通过创建一组与我想要创建的垂直线相对应的新数据,将垂直线添加到简单的折线图中。

from datetime import *
x = [date(2001,1,1), date(2002,1,1),date(2003,1,1), date(2004,1,1),
date(2005,1,1), date(2006,1,1),date(2007,1,1), date(2008,1,1),
date(2009,1,1), date(2010,1,1),date(2011,1,1)]
y = [0, 3, 2, 4, 6, 9, 15, 18, 19, 25, 28]
output_file("lines.html", title="line plot example")
p = figure(title="simple line example",x_axis_type = "datetime")
p.line(x, y)
a = [min(y),max(y)]
b = [date(2009,1,1),date(2009,1,1)]
p.line(b, a ,line_color="red")
show(p)

关于bokeh - 如何绘制引导线/ Bokeh ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29062430/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com