本文介绍了如何将 x 轴设置为散景图上的日期时间?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在 ipython 笔记本上使用散景.
I'm using bokeh with an ipython notebook.
我想使用包含日期时间的 Pandas DataFrame 在散景中绘制折线图:
I want to plot a line graph in bokeh using a pandas DataFrame containing datetimes:
import pandas as pd
from datetime import datetime as dt
from bokeh.io import output_notebook
from bokeh.charts import Bar, Line, show
df = pd.DataFrame(data=[1,2,3],
index=[dt(2015, 1, 1), dt(2015, 1, 2), dt(2015, 1, 3)],
columns=['foo'])
output_notebook()
show(Line(df))
然而,散景使用微秒!为什么是这样?我该如何解决?
However, bokeh uses microseconds! Why is this? How do I fix it?
推荐答案
从散景 0.12.3 开始,您现在可以:
As of bokeh 0.12.3, you can now do:
p = figure(..., x_axis_type='datetime', ...)
这篇关于如何将 x 轴设置为散景图上的日期时间?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!