从pandas系列(单行)中提取datetime obj值

时间:2016-12-21 21:12:25

标签: python datetime pandas

我遇到与此处link相同的问题,但这次是使用日期时间对象。

使用.values将datetime对象转换为2011-02-28T19:00:00.000000000-0500

转化前,日期时间为2011-03-01

做我想做的事的正确方法是什么?

1 个答案:

答案 0 :(得分:2)

由于datetime64 [ns]值的高精度,如果您只对日期感兴趣,那么您可以在致电dt.date之前调用.values

p0_cost = (cost_df['price1'][cost_df['date']==p0] - cost_df['price2'][cost_df['date']==p0]).dt.date.values[0]