PythonPandas-指定されたBusinessDayオブジェクトに適用されたキーワード引数を表示します
指定されたBusinessDayOffsetオブジェクトに適用されたキーワード引数を表示するには、PandasのBusinessDay.kwdsプロパティを使用します。
まず、必要なライブラリをインポートします-
import datetime import pandas as pd
パンダでタイムスタンプオブジェクトを設定します-
timestamp = pd.Timestamp('2021-10-30 01:55:02.000045')
BusinessDayオフセットを作成します。 BusinessDayはDateOffsetサブクラスです-
bdOffset = pd.tseries.offsets.BusinessDay(offset = datetime.timedelta(hours = 7, minutes = 7))
更新されたタイムスタンプを表示する-
print("\nUpdated Timestamp...\n",timestamp + bdOffset)
キーワード引数を表示する-
print("\nKeyword arguments on the given BusinessDay Offset...\n",bdOffset.kwds)
例
以下はコードです-
import datetime import pandas as pd # Set the timestamp object in Pandas timestamp = pd.Timestamp('2021-10-30 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(hours = 7, minutes = 7)) # Display the BusinessDay Offset print("\nBusinessDay Offset...\n",bdOffset) # Display the Updated Timestamp print("\nUpdated Timestamp...\n",timestamp + bdOffset) # return the frequency applied on the given BusinessDay object as a string print("\nFrequency on the given BusinessDay Offset...\n",bdOffset.freqstr) # Display the keyword arguments print("\nKeyword arguments on the given BusinessDay Offset...\n",bdOffset.kwds)を表示します
出力
これにより、次のコードが生成されます-
Timestamp... 2021-10-30 01:55:02.000045 BusinessDay Offset... <BusinessDay: offset=datetime.timedelta(seconds=25620)> Updated Timestamp... 2021-11-01 09:02:02.000045 Frequency on the given BusinessDay Offset... B+7H7Min Keyword arguments on the given BusinessDay Offset... {'offset': datetime.timedelta(seconds=25620)}
-
PythonPandas-指定されたDateOffsetオブジェクトのナノ秒数を返します
指定されたDateOffsetオブジェクトのナノ秒数を返すには、Pandasのoffset.nanosプロパティを使用します。 まず、必要なライブラリをインポートします- from pandas.tseries.frequencies import to_offset import pandas as pd パンダでタイムスタンプオブジェクトを設定します- timestamp = pd.Timestamp('2021-08-30 03:08:02.000045') DateOffsetを作成します。ここでは、「D」頻度を使用して日数を増やしています- offset =
-
PythonPandas-指定されたDateOffsetオブジェクトに適用される頻度を文字列として返します
指定されたDateOffsetオブジェクトに適用された頻度を文字列として返すには、 offset.freqstrを使用します パンダのプロパティ。 まず、必要なライブラリをインポートします- from pandas.tseries.offsets import DateOffset import pandas as pd パンダでタイムスタンプオブジェクトを設定します- timestamp = pd.Timestamp('2021-08-30 02:30:55') DateOffsetを作成します。ここでは、「months」パラメータを使用して月をインクリメントしていま