PythonPandas-Periodオブジェクトを年頻度のタイムスタンプとして返します
Periodオブジェクトを年次頻度のタイムスタンプとして返すには、 period.to_timestamp()を使用します メソッドを実行し、freqパラメータを「 Y」として設定します ’。
まず、必要なライブラリをインポートします-
import pandas as pd
pandas.Periodは期間を表します。期間オブジェクトの作成
period = pd.Period(freq="S", year = 2021, month = 9, day = 18, hour = 17, minute = 20, second = 45)
期間オブジェクトを表示する
print("Period...\n", period)
Periodオブジェクトのタイムスタンプ表現を返します。 「freq」パラメータを使用して周波数を設定しました。頻度は「Y」、つまり毎年に設定されます
print("\nPeriod to Timestamp with yearly (year-end) frequency...\n", period.to_timestamp(freq='Y'))
例
以下はコードです
import pandas as pd # The pandas.Period represents a period of time # Creating a Period object period = pd.Period(freq="S", year = 2021, month = 9, day = 18, hour = 17, minute = 20, second = 45) # display the Period object print("Period...\n", period) # Return the Timestamp representation of the Period object # We have set the frequency using the "freq" parameter # The frequency is set as 'Y' i.e. yearly print("\nPeriod to Timestamp with yearly (year-end) frequency...\n", period.to_timestamp(freq='Y'))
出力
これにより、次のコードが生成されます
Period... 2021-09-18 17:20:45 Period to Timestamp with yearly (year-end) frequency... 2021-12-31 00:00:00
-
PythonPandas-指定されたタイムスタンプを四半期ごとの頻度で期間に変換します
指定されたタイムスタンプを期間に変換するには、タイムスタンプ.to_period()を使用します 方法。その中で、 freqを使用して頻度を設定します パラメータ。四半期ごとの頻度については、freqをQに設定します。 まず、必要なライブラリをインポートします- import pandas as pd パンダでタイムスタンプオブジェクトを作成します timestamp = pd.Timestamp(2021, 9, 18, 11, 50, 20, 33) タイムスタンプを期間に変換します。値「Q」の「freq」パラメータを使用して、頻度を四半期ごとに設定しました timestamp.t
-
PythonPandas-指定されたタイムスタンプを毎週の頻度で期間に変換します
指定されたタイムスタンプを期間に変換するには、タイムスタンプ.to_period()を使用します 方法。その中で、freqパラメーターを使用して周波数を設定します。週ごとの頻度については、頻度をWに設定します。 まず、必要なライブラリをインポートします- import pandas as pd パンダでタイムスタンプオブジェクトを作成します timestamp = pd.Timestamp(2021, 9, 18, 11, 50, 20, 33) タイムスタンプを期間に変換します。値が「W」の「freq」パラメータを使用して、頻度を毎週に設定しました timestamp.to_peri