Python Pandas BusinessHour 偏移对象 - 移至下一个工作日

使用BusinessHour.next_bdayPandas 中的属性转移到下一个工作日。首先,导入所需的库 -

import datetime
import pandas as pd

创建营业时间偏移。BusinessHour 是 DateOffset 子类 -

bhOffset = pd.tseries.offsets.BusinessHour(offset = datetime.timedelta(days = 3, hours = 3))

显示营业时间偏移量 -

print("\nBusinessHour Offset...\n",bhOffset)

在 Pandas 中设置时间戳对象 -

timestamp = pd.Timestamp('2021-9-30 06:50:20')

显示下一个工作日 -

print("\nThe next business day...\n",timestamp + bhOffset.next_bday)

示例

以下是代码 -

import datetime
import pandas as pd

# 在 Pandas 中设置时间戳对象
timestamp = pd.Timestamp('2021-9-30 06:50:20')

# 显示时间戳
print("Timestamp...\n",timestamp)

# 创建营业时间偏移
# BusinessHour 是 DateOffset 子类
bhOffset = pd.tseries.offsets.BusinessHour(offset = datetime.timedelta(days = 3, hours = 3))
# 显示营业时间偏移
print("\nBusinessHour Offset...\n",bhOffset)

# 显示下一个工作日
print("\nThe next business day...\n",timestamp + bhOffset.next_bday)
输出结果

这将产生以下代码 -

Timestamp...
 2021-09-30 06:50:20

BusinessHour Offset...
 <BusinessHour: offset=datetime.timedelta(days=3, seconds=10800): BH=09:00-17:00>

The next business day...
 2021-10-01 06:50:20

猜你喜欢