我需要使用时间戳找到最近的条目。
以下相关数据。 Python 2.7
import numpy as np
import pandas as pd
for dt in data:
#cleaning up data
print data[3]['Timestamp']
输出:
u'2017/08/17 5:49:19 PM EST'
答案 0 :(得分:1)
如果您有时间戳列,则可以使用max:
获取最新时间戳data.Timestamp = pd.to_datetime(data.Timestamp)
data.Timestamp.max()