当我试图分散情节时,我会在'时间'上得到关注,如何分散情节时间?

时间:2017-09-24 02:06:53

标签: python pandas matplotlib scatter-plot

当我试图散布情节时,我对'时间'得到了关注,我如何分散这些列的情节?

 high      time
0    17.23  10:37:00
1    17.64  14:01:00
2    15.28  09:31:00
3    15.56  11:41:00
4    15.56  11:42:00
5    15.25  09:30:00
6    15.25  09:49:00
7    15.10  15:52:00
8    16.41  10:40:00
9    17.75  15:09:00
10   17.75  15:10:00
11   19.20  09:41:00

df_high.plot.scatter(x='time', y='high', c=None, s=None)
plt.show()

1 个答案:

答案 0 :(得分:2)

df.set_index('time').sort_index().plot(style='.')

enter image description here