转换pandas中的时间格式

时间:2015-02-13 17:47:49

标签: python pandas

我有一个这种格式的字符串对象2014-12-08 09:30:00.066000但我想转换为datetime变量。我也希望它不那么精细 - 我希望它只是在第二个例如

的顺序

2014-12-08 09:30:00.066000至2014-12-08 09:30:00

我正在尝试使用pd.to_datetime函数,但它不适用于我。有人知道怎么做吗?谢谢!

1 个答案:

答案 0 :(得分:0)

见:

How to round a Pandas `DatetimeIndex`?

from pandas.lib import Timestamp

def to_the_second(ts):
    return Timestamp(long(round(ts.value, -9)))

df['My_Date_Column'].apply(to_the_second)