Python
 Computer >> コンピューター >  >> プログラミング >> Python

PythonPandas-CustomBusinessDayオフセットに適用されるウィークマスクを取得します


CustomBusinessDayオフセットに適用されるウィークマスクを取得するには、PandasのCustomBusinessDay.weekmaskプロパティを使用します。

まず、必要なライブラリをインポートします-

import pandas as pd

パンダでタイムスタンプオブジェクトを設定します-

timestamp = pd.Timestamp('2021-10-22 03:10:35')

CustomBusinessDayオフセットを作成します。 CustomBusinessDayは、休日を除くカスタム営業日を表すDateOffsetサブクラスです。有効な営業日のウィークマスク-

cbdOffset = pd.tseries.offsets.CustomBusinessDay(n = 4, weekmask = 'Mon Tue Wed Fri')

タイムスタンプにオフセットを追加し、更新されたタイムスタンプを表示します-

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

ウィークマスクを表示する-

print("\nThe weekmask on the CustomBusinessDay object..\n", cbdOffset.weekmask)

以下はコードです-

import pandas as pd

# Set the timestamp object in Pandas
timestamp = pd.Timestamp('2021-10-22 03:10:35')

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

# Create the CustomBusinessDay Offset
# CustomBusinessDay is the DateOffset subclass representing custom business days excluding holidays
# Weekmask of valid business days
cbdOffset = pd.tseries.offsets.CustomBusinessDay(n = 4, weekmask = 'Mon Tue Wed Fri')

# Display the CustomBusinessDay Offset
print("\nCustomBusinessDay Offset...\n",cbdOffset)

# Add the offset to the Timestamp and display the Updated Timestamp
print("\nUpdated Timestamp...\n",timestamp + cbdOffset)

# Return frequency applied on the given CustomBusinessDay Offset object as a string
print("\nFrequency applied on the given CustomBusinessDay Offset object...\n",cbdOffset.freqstr)

# return the count of increments on the given CustomBusinessDay object
print("\nThe count of increments on the CustomBusinessDay object..\n", cbdOffset.n)

# display the weekmask
print("\nThe weekmask on the CustomBusinessDay object..\n", cbdOffset.weekmask)

出力

これにより、次のコードが生成されます-

Timestamp...
 2021-10-22 03:10:35

CustomBusinessDay Offset...
 <4 * CustomBusinessDays>

Updated Timestamp...
 2021-10-29 03:10:35

Frequency applied on the given CustomBusinessDay Offset object...
 4C

The count of increments on the CustomBusinessDay object..
 4

The weekmask on the CustomBusinessDay object..
 Mon Tue Wed Fri

  1. Python-PandasのTimestampオブジェクトから平日を取得します

    Timestampオブジェクトから平日を取得するには、 timestamp.weekday()を使用します 方法。まず、必要なライブラリをインポートします- import pandas as pd import datetime パンダでタイムスタンプを設定します。タイムスタンプオブジェクトを作成する timestamp = pd.Timestamp(datetime.datetime(2021, 5, 12)) その年の平日を取得します。平日は、月曜日==0、火曜日==1…日曜日==6の数字で表されます。 timestamp.weekday() 例 以下はコードです import

  2. Pythonパンダ-UTCオフセット時間を取得

    UTCオフセット時間を取得するには、 timestamp.utcoffset()を使用します 。まず、必要なライブラリをインポートします- import pandas as pd タイムスタンプの作成 timestamp = pd.Timestamp('2021-10-16T15:12:34.261811624', tz='UTC') UTCの日時を含む新しいタイムスタンプ timestamp.utcnow() UTCオフセット時間を取得する timestamp.utcoffset() 例 以下はコードです import pandas as pd