gpt4 book ai didi

python - 如何在 python pandas 中处理零日期时间?

转载 作者:行者123 更新时间:2023-12-01 05:39:47 27 4
gpt4 key购买 nike

我的数据中有“0000-00-00 00:00:00”值。我该如何处理它们?

我收到以下错误;

ValueError: ('Unable to parse 0000-00-00 00:00:00', u'occurred at index 1008'))

从 csv 读取,我这样做了;

pd.to_datetime(data['截止时间']) pd.to_datetime(data['完成时间'])

并在 here 的帮助下,我这样做了;

def func(x,y):
if x > y:
return 'delayed by ' + str( ((x-y).seconds//60)%60) + ' minutes'
else:
return 'on time by ' + str( ((y-x).seconds//60)%60) + ' minutes'
data['time delay'] = data.apply(lambda row: func(pd.Timestamp(row['Completed Time']), pd.Timestamp(row['Deadline Time'])), axis=1)

最佳答案

试试这个,该值将转换为 NaT

pd.to_datetime(data['Deadline Time'], coerce=True)

关于python - 如何在 python pandas 中处理零日期时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17917875/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com