Python Pandas - 创建 BusinessDay 偏移


要创建 BusinessDay 偏移,在 Pandas 中使用 pd.tseries.offsets.BusinessDay() 方法。首先,导入必需的库 -

import datetime
import pandas as pd

创建 BusinessDay 偏移。BusinessDay 是 DateOffset 子类 -

bdOffset = pd.tseries.offsets.BusinessDay(offset = datetime.timedelta(days = 7, hours = 7, minutes =
7))

显示 BusinessDay 偏移 -

print("BusinessDay Offset...\n",bdOffset)

在 Pandas 中设置时间戳对象 -

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

显示更新的时间戳 -

print("\nUpdated Timestamp...\n",timestamp + bdOffset)

示例

以下为代码 -

import datetime
import pandas as pd

# Set the timestamp object in Pandas
timestamp = pd.Timestamp('2021-1-1 01:55:02.000045')

# Display the Timestamp
print("Timestamp...\n",timestamp)

# Create the BusinessDay Offset
# BusinessDay is the DateOffset subclass
bdOffset = pd.tseries.offsets.BusinessDay(offset = datetime.timedelta(days = 7, hours = 7, minutes = 7))

# Display the BusinessDay Offset
print("BusinessDay Offset...\n",bdOffset)

# Display the Updated Timestamp
print("\nUpdated Timestamp...\n",timestamp + bdOffset)

输出

这将生成以下代码 -

Timestamp...
 2021-01-01 01:55:02.000045
BusinessDay Offset...
 <BusinessDay: offset=datetime.timedelta(days=7, seconds=25620)>

Updated Timestamp...
 2021-01-11 09:02:02.000045

更新时间:2021 年 10 月 21 日

188 次浏览

开启您的 职业生涯

通过完成课程获得认证

开始学习
广告
© . All rights reserved.