为什么使用sort_values对时间戳进行排序不起作用?

时间:2019-03-05 11:20:45

标签: python-3.x sorting datetime timestamp epoch

我有一列时间戳转换为人类可读的形式。 我试图从时代开始以及转换后对其进行排序。给我

Fri, 08 Feb 2019 17:24:16 IST
Mon, 11 Feb 2019 02:19:40 IST
Sat, 09 Feb 2019 00:22:43 IST

未排序的

我用过sort_values()

each_tracker_df = each_tracker_df.sort_values(["timestamp"],ascending=True)

为什么不起作用?

1 个答案:

答案 0 :(得分:0)

因为一直都在 IST 中。将字符串 IST 替换为 NULL

>>import datetime
>>times=['Fri, 10 Feb 2010 17:24:16','Fri, 11 Feb 2010 17:24:16','Fri, 11 Feb 2019 17:24:16']
>>change_format=[]
>> for time in times:
         change_format.append(datetime.datetime.strptime(time, '%a, %d %b %Y %H:%M:%S'))
>>change_format.sort()