PythonPandasBusinessHourオフセットオブジェクト-次の営業日に移動します
PandasのBusinessHour.next_bdayプロパティを使用して、次の営業日に移動します。まず、必要なライブラリをインポートします-
import datetime import pandas as pd
BusinessHourオフセットを作成します。 BusinessHourはDateOffsetサブクラスです-
bhOffset = pd.tseries.offsets.BusinessHour(offset = datetime.timedelta(days = 3, hours = 3))
BusinessHourオフセットを表示する-
print("\nBusinessHour Offset...\n",bhOffset)
パンダでタイムスタンプオブジェクトを設定します-
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 # Set the timestamp object in Pandas timestamp = pd.Timestamp('2021-9-30 06:50:20') # Display the Timestamp print("Timestamp...\n",timestamp) # Create the BusinessHour Offset # BusinessHour is the DateOffset subclass bhOffset = pd.tseries.offsets.BusinessHour(offset = datetime.timedelta(days = 3, hours = 3)) # Display the BusinessHour Offset print("\nBusinessHour Offset...\n",bhOffset) # Display the next business day 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
-
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
-
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