gpt4 book ai didi

python - 当我使用 apply 和 datetime 函数时,如何编写日期格式?

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

我想在数据时间格式中将天数放在第一位。在其他应用程序中,我使用了以下内容:

df2.Timestamp = pd.to_datetime(df2.Timestamp,dayfirst=True) #the format is d/m/yyyy

现在我想使用 apply 函数,因为我有多个列,而不是在 4 行中执行,我想使用 apply 在一行中执行。

df2[["Detection_time", "Device_ack", "Reset/Run", "Duration"]] = df2[["Detection_time", "Device_ack", "Reset/Run", "Duration"]].apply(pd.to_datetime)

但我不知道如何配置“dayfirst”参数。

最佳答案

您可以使用:

(df2[["Detection_time", "Device_ack", "Reset/Run", "Duration"]]
.apply(pd.to_datetime,dayfirst=True))

关于python - 当我使用 apply 和 datetime 函数时,如何编写日期格式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57427747/

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