如何在python的熊猫中创建没有日期的时间索引df?

时间:2020-01-29 02:50:50

标签: python pandas dataframe time

我要创建不带日期的时间索引df,如下所示:

          2019/10/01  2019/10/02

00:00:00
00:00:01
00:00:02
00:00:03
...
23:59:59

我该如何做df? 谢谢

2 个答案:

答案 0 :(得分:1)

我们有date_range,只需要使用time来选择时间

idx = pd.date_range('2020-01-01', periods=24*60*60, freq='S').time


df.index = idx

答案 1 :(得分:1)

尝试使用:

df.index = pd.date_range(start='00:00:00', end='23:59:59', freq='S').time