如何以间隔

时间:2018-02-08 18:27:08

标签: python plot graph bokeh

如何在x轴上看到整数,例如704,705,706 enter image description here

2 个答案:

答案 0 :(得分:0)

将x轴列传递给散景中的x.axis.ticker

p.xaxis.ticker = df['x']

enter image description here

答案 1 :(得分:0)

使用SingleIntervalTicker

p.xaxis.ticker = SingleIntervalTicker(interval=1)