使用python plt和pands更改x轴刻度,即时间戳

时间:2018-06-14 19:55:24

标签: python pandas matplotlib

我想使用plt.plot在pandas中绘制DataFrame中的时间序列数据。

我的数据类似于enter image description here

,情节图为enter image description here

我想将轴刻度从16:00:00改为18:00:00,有5个刻度。

有没有好方法呢?

由于

1 个答案:

答案 0 :(得分:-1)

根据documentation of pandas.DataFrame.plot,您应该相应地设置xlim和xticks参数。 xlim有两个元组,下限和上限,xticks应该包含你的刻度标记值。