gpt4 book ai didi

python - pandas DateOffset 函数

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

以下返回 True 正常吗?

这背后的想法是什么?

import pandas as pd

t = pd.Timestamp('2017-01-01 00:00:00')
t + pd.DateOffset(month=1) == t

最佳答案

使用months代替month来增加值1,而不是替换,谢谢@splash58:

print (t + pd.DateOffset(months=1) == t)
False

详细信息:

print (t + pd.DateOffset(month=1))
2017-01-01 00:00:00

print (t + pd.DateOffset(months=1))
2017-02-01 00:00:00

如果检查pandas.tseries.offsets.DateOffset.html :

**kwds

Temporal parameter that add to or replace the offset value.

Parameters that add to the offset (like Timedelta):

years
months
weeks
days
hours
minutes
seconds
microseconds
nanoseconds

Parameters that replace the offset value:

year
month
day
weekday
hour
minute
second
microsecond
nanosecond

关于python - pandas DateOffset 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58815926/

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