如何使用Bokeh datetimetickformatter自定义刻度

问题描述 投票:0回答:3

我对 python 比较陌生,我正在使用 bokeh 创建一个 html 文件来绘制一些时间序列数据。

我想将 x 轴刻度格式设置为“DD/MM HH:SS”。我正在编写代码的简化版本:

from bokeh.plotting import figure, output_file, save, show
from bokeh.models import DatetimeTickFormatter
import datetime as dt
t=[dt.datetime(2017, 1, 9, 16, 14, 10),dt.datetime(2017, 1, 9, 16, 15, 20)]
Temp=[200,210]
output_file("Burner SPC test.html")
p1=figure(title="Tip1 TC", x_axis_label="Time", y_axis_label="Temp Diff", x_axis_type="datetime")
p1.line(t,Temp)
p1.xaxis.formatter=DatetimeTickFormatter(formats=dict(
days=["%??"],
months=["%??"],
hours=["%???"],
minutes=["%???"])) #not sure how to format here to get the desired output
show(p1)

非常感谢任何帮助。 预先感谢。

python bokeh
3个回答
4
投票

DateTimeTickFormatter 不再需要 dict(如 bigreddot here 所提到的)。在我的 Bokeh 版本(1.0.4)中,它通过删除“formats=dict()”并提供格式字符串来工作。

p1.xaxis.formatter=DatetimeTickFormatter(days="%m/%d %H:%M",
months="%m/%d %H:%M",
hours="%m/%d %H:%M",
minutes="%m/%d %H:%M")

你可以两者都做。对所有这些使用相同的格式字符串,或使用单独的格式字符串。放大时轴的格式会调整。

from bokeh.plotting import figure, output_file, save, Show
from bokeh.models import DatetimeTickFormatter
import datetime as dt
import datetime as dt
t=[dt.datetime(2017, 1, 9, 16, 14, 10),dt.datetime(2017, 1, 10, 17, 15, 20)]
Temp=[200,210]
output_file("Burner SPC test.html")
p1=figure(title="Tip1 TC", x_axis_label="Time", y_axis_label="Temp Diff", x_axis_type="datetime")
p1.line(t,Temp)
p1.xaxis.formatter=DatetimeTickFormatter(days="%m/%d",
hours="%H",
minutes="%H:%M")
show(p1)

0
投票

我刚刚删除了所有参数,使用默认值:

formatter=DatetimeTickFormatter(),

有效!


-1
投票

我使用

"%m/%d %H:%M"
解决了所有字段:月、日、小时、分钟:

p1.xaxis.formatter=DatetimeTickFormatter(formats=dict(
    days=["%m/%d %H:%M"],
    months=["%m/%d %H:%M"],
    hours=["%m/%d %H:%M"],
    minutes=["%m/%d %H:%M"]
))

最初,我尝试使用

"%m"
几个月,
"%d"
几天,
"%H"
几小时,
"%M"
几分钟,但由于我希望在所有这些尺度上使用相同的格式,因此它们都需要配置相同。

© www.soinside.com 2019 - 2024. All rights reserved.