我想在python
中绘制时间线。但是我认为matplotlib的阿拉伯语单词有问题,我想为此使用dash
或bokeh
。
我搜索了互联网,但找不到任何内容来绘制时间表。
有人可以帮助我吗?
答案 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)