我有一个这种格式的字符串对象2014-12-08 09:30:00.066000但我想转换为datetime变量。我也希望它不那么精细 - 我希望它只是在第二个例如
的顺序2014-12-08 09:30:00.066000至2014-12-08 09:30:00
我正在尝试使用pd.to_datetime函数,但它不适用于我。有人知道怎么做吗?谢谢!
答案 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)