PythonPandas-PeriodIndexオブジェクトから頻度オブジェクトを返します
PeriodIndexオブジェクトから頻度オブジェクトを返すには、 PeriodIndex.freqを使用します プロパティ。
まず、必要なライブラリをインポートします-
import pandas as pd
PeriodIndexオブジェクトを作成します。 「freq」パラメータを使用して周波数を設定しました-
periodIndex = pd.PeriodIndex(['2021-09-25', '2019-10-30', '2020-11-20', '2021-07-15', '2022-06-12', '2023-07-10'], freq="D")
PeriodIndexオブジェクトを表示-
print("PeriodIndex...\n", periodIndex)
PeriodIndex頻度を表示-
print("\nPeriodIndex frequency...\n", periodIndex.freq)
例
以下はコードです-
import pandas as pd # Create a PeriodIndex object # PeriodIndex is an immutable ndarray holding ordinal values indicating regular periods in time # We have set the frequency using the "freq" parameter periodIndex = pd.PeriodIndex(['2021-09-25', '2019-10-30', '2020-11-20', '2021-07-15', '2022-06-12', '2023-07-10'], freq="D") # Display PeriodIndex object print("PeriodIndex...\n", periodIndex) # Display PeriodIndex frequency print("\nPeriodIndex frequency...\n", periodIndex.freq) # Display the month number i.e. 1 = January, 2 = February ... 12 = December print("\nMonth number...\n", periodIndex.month)
出力
これにより、次のコードが生成されます-
PeriodIndex... PeriodIndex(['2021-09-25', '2019-10-30', '2020-11-20', '2021-07-15', '2022-06-12', '2023-07-10'], dtype='period[D]') PeriodIndex frequency... <Day> Month number... Int64Index([9, 10, 11, 7, 6, 7], dtype='int64')
-
PythonPandas-Timedeltaオブジェクトからナノ秒を返します
Timedeltaオブジェクトからマイクロ秒を返すには、 timedelta.nanosecondsを使用します 財産。まず、必要なライブラリをインポートします- import pandas as pd TimeDeltasは、Pythonの標準の日時ライブラリであり、異なる表現のtimedeltaを使用します。 Timedeltaオブジェクトを作成する timedelta = pd.Timedelta('4 days 10 min 25 s 15 ms 33 ns') タイムデルタを表示する print("Timedelta...\n", timed
-
PythonPandas-Timedeltaオブジェクトからマイクロ秒を返します
Timedeltaオブジェクトからマイクロ秒を返すには、 timedelta.microsecondsを使用します 財産。まず、必要なライブラリをインポートします- import pandas as pd TimeDeltasは、Pythonの標準の日時ライブラリであり、異なる表現のtimedeltaを使用します。 Timedeltaオブジェクトを作成する timedelta = pd.Timedelta('7 days 20 min 15 s 35 ms') マイクロ秒の値を返す timedelta.microseconds 例 以下はコードです import pa