在散景中的条形图的时间尺度

时间:2015-09-17 02:05:41

标签: python bokeh

我使用以下代码创建了下面图片的折线图:

p=figure(x_axis_type='datetime')
p.line(df.index,df.counter, line_width=2)
show(p)

enter image description here

但是,如果我尝试使用带有此代码的条形图执行相同的操作:

data = {"x":df.counter}
b = Bar(data, xscale='datetime')
show(b)

比例不正确:

enter image description here

任何可能的原因,是否可以修复?

0 个答案:

没有答案