gpt4 book ai didi

python - 从 Bokeh 中的 x 轴获取所需的日期时间值

转载 作者:太空宇宙 更新时间:2023-11-04 05:26:11 24 4
gpt4 key购买 nike

我已经阅读了文档并在 Google 和 StackOverflow 上搜索了答案,但还没有一个更明智的答案。

我有一个 Bokeh 图,其中包含两个变量“分数”和“压力”的圆圈字形,以及第三个变量“日期”作为日期时间 x 轴(图片 here)。我希望用户能够单击圆圈并转到一个 URL,该 URL 显示由相应日期标识的特定数据点的详细 View 。

我已经启用了一个带有 openURL 回调的点击工具,它在 URL 的末尾附加了日期时间值。问题在于,一旦单击数据点,传递的日期时间值就不是所需的格式:'2016-07-20'。我得到的是以下值:“1468969200000”。因此,用户被重定向到“url/1468969200000/”而不是“url/2016-07-20/”。

有没有办法更改单击数据点后传递的日期值的格式?

这是我的代码(在 jupyter notebook 中运行):

import datetime
from bokeh.plotting import figure, output_notebook, show
from bokeh.models import Range1d, OpenURL, TapTool, HoverTool, ColumnDataSource, DatetimeTickFormatter

data = {'score': [4.33, 2.66, 4.66, 2.66, 2.66, 1.66, 1.0, 4.33],
'stress': [3.66, 3.0, 3.0, 1.33, 3.66, 3.33, 1.0, 4.33],
'date': [
datetime.date(2016, 7, 17),
datetime.date(2016, 7, 18),
datetime.date(2016, 7, 19),
datetime.date(2016, 7, 20),
datetime.date(2016, 7, 21),
datetime.date(2016, 7, 22),
datetime.date(2016, 7, 23),
datetime.date(2016, 7, 24)
]
}

source = ColumnDataSource(data=data)

TOOLS = ['hover', 'pan', 'tap']

plot = figure(x_axis_type='datetime', plot_height=250, tools=TOOLS)

plot.circle('date', 'score', legend='score', size=15, color='red', source=source)
plot.circle('date', 'stress', legend='stress', size=10, color='orange', source=source)
plot.y_range = Range1d(1, 5, bounds=(1,5))
plot.x_range = Range1d(datetime.date(2016, 7, 17), datetime.date(2016, 7, 23))

hover = plot.select(type=HoverTool)
hover.tooltips = [
("score", "@score"),
("stress", "@stress"),
("date", "@date")
]

url = 'url/@date/'
taptool = plot.select(type=TapTool)
taptool.callback = OpenURL(url=url)

show(plot)

最佳答案

一个简单的解决方法是另外提供字符串格式的日期。

dateStr= {'dateStr': [x.isoformat() for x in data['date']]}
data.update(dateStr)

然后,您可以在 hover.tooltips 中使用 dateStr 并生成 url

hover.tooltips = [
("score", "@score"),
("stress", "@stress"),
("date", "@dateStr")
]

url = 'url/@dateStr/'

关于python - 从 Bokeh 中的 x 轴获取所需的日期时间值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38580063/

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