gpt4 book ai didi

python - 如何向 python pandas 中的索引列添加常量时间增量?

转载 作者:行者123 更新时间:2023-12-01 05:20:34 25 4
gpt4 key购买 nike

我有一个关于 python pandas 中的时间戳的简单问题

                   date       sometime
time
03:10:22.227138 20140210 03:10:22.227138
03:10:22.029889 20140211 03:10:22.029889
03:10:22.030458 20140312 03:10:22.030458

如何为索引中的所有项目添加 2 分钟。即时间栏?

有什么快速而简洁的方法可以做到这一点吗?

谢谢!

最佳答案

第一个答案(错误)使用datetime.replace():

df["time"] = df["time"].apply(lambda x: x.replace(minute=x.minute+2))

这是错误的,因为替换函数仅将 0 到 59 之间的数字作为分钟参数。

按照评论建议进行编辑:

df["time"] = df["time"].apply(lambda x: x + timedelta(minutes=2))

关于python - 如何向 python pandas 中的索引列添加常量时间增量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22482336/

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