Python Pandas – 创建BusinessHour offset

Python Pandas – 创建BusinessHour offset

要创建BusinessHour offset,请在Pandas中使用pd.tseries.offsets.BusinessHour() 方法。首先,导入所需的库−

import pandas as pd

创建BusinessHour Offset。 BusinessHour是DateOffset子类。在这里,“start” 是您定制的业务小时开始时间,以24小时格式表示。 “end”是您定制的业务小时结束时间,以24小时格式表示−

bhOffset = pd.tseries.offsets.BusinessHour(start="09:30", end = "18:00")

设置Pandas中的时间戳对象−

timestamp = pd.Timestamp('2021-1-1 01:55:30')

将offset添加到时间戳中,并显示更新的时间戳−

print("\n更新时间戳...\n",timestamp + bhOffset)

更多Pandas文章,请阅读:Pandas教程

示例

以下是代码−

import pandas as pd

# 设置Pandas中的时间戳对象
timestamp = pd.Timestamp('2021-1-1 01:55:30')

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

# 创建BusinessHour Offset
# BusinessHour是DateOffset的子类
# 这里,“start”是您自定义业务小时的开始时间,以24小时格式表示。
# “end”是您自定义业务小时的结束时间,以24小时格式表示。
bhOffset = pd.tseries.offsets.BusinessHour(start="09:30", end = "18:00")

# 显示BusinessHour Offset
print("\nBusinessHour Offset...\n",bhOffset)

# 在时间戳上添加offset并显示更新的时间戳
print("\n更新时间戳...\n",timestamp + bhOffset)

输出

这将生成以下代码−

时间戳...
 2021-01-01 01:55:30

BusinessHour Offset...
 <BusinessHour: BH=09:30-18:00>

更新时间戳...
 2021-01-01 10:30:00

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程