私はBokehとチャートを作ろうとしており、私はdatetime
のリストを持っています。チャートのx軸としてタイムスタンプを使用するには?
datetime
を私のx軸に設定したいと思いますが、Bokehがこのグラフを正しく表示できないようです。
誰にでも良い解決策がありますか?
ありがとうございます。
datetime = ['2017-11-23 20:56:16',
'2017-11-23 20:56:47',
'2017-11-23 21:00:56',
'2017-11-23 21:01:26']
p = figure(x_axis_type="datetime", plot_width=800, plot_height=350, title="the trend")
p.xaxis.axis_label = "time"
p.yaxis.axis_label = "price"
p.line(datetime, price, line_width=2)
output_file("test.html")
show(p)
編集あなたの質問のために
。 – aaron