gpt4 book ai didi

python - 如何使用 pandas datetime 将数字转换为日期(通过使用这些数字作为距今天日期的距离)

转载 作者:行者123 更新时间:2023-11-28 20:00:35 25 4
gpt4 key购买 nike

如何将数字转换为日期(通过使用这些数字作为距今天日期的距离)。这是我的数据

    id  Number
1 -3
2 -1
3 6

因为今天是04/07/2019所以可以转换成

    id  Number  date
1 -3 01/07/2019
2 -1 03/07/2019
3 6 10/07/2019

最佳答案

您可以使用 pd.to_timedelta() 实现此目的:

df=df.assign(date=(pd.to_datetime('today')+pd.to_timedelta(df.Number,unit='D')).dt.date)

   id  Number        date
0 1 -3 2019-07-01
1 2 -1 2019-07-03
2 3 6 2019-07-10

关于python - 如何使用 pandas datetime 将数字转换为日期(通过使用这些数字作为距今天日期的距离),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56882786/

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