以破折号或散景绘制时间线

时间:2019-01-19 08:25:38

标签: python bokeh timeline plotly-dash

我想在python中绘制时间线。但是我认为matplotlib的阿拉伯语单词有问题,我想为此使用dashbokeh。 我搜索了互联网,但找不到任何内容来绘制时间表。

有人可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

这在Bokeh中是可能的,您可以在this页上找到一个简单的示例。

import pandas as pd
from bokeh.plotting import figure, output_file, show
from bokeh.sampledata.stocks import AAPL

df = pd.DataFrame(AAPL)
df['date'] = pd.to_datetime(df['date'])

output_file("datetime.html")

# create a new plot with a datetime axis type
p = figure(plot_width=800, plot_height=250, x_axis_type="datetime")

p.line(df['date'], df['close'], color='navy', alpha=0.5)

show(p)