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.