Python pandas中的时间戳系列范围

时间:2015-05-04 19:01:29

标签: python pandas timestamp dataframe

我的数据帧df包含时间戳中的列。我想知道是否有一行命令可以返回时间戳的范围,即返回最早的时间戳和最新的时间戳。如何根据时间戳对df行进行排序?

df['StartDate'][:5]
Out[8]: 
0    2015/02/17 00:16:27
1    2015/02/17 00:16:27
2    2015/02/17 00:16:27
3    2015/02/17 00:16:27
4    2015/02/17 00:16:27
Name: StartDate, dtype: object 

更新:John Galt和Joris提供了答案[' StartDate']。min()和df [' StartDate']。max()解决方案。 Joris进一步提供了答案df.sort(' StartDate')

0 个答案:

没有答案