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

PythonPandas-秒単位の解像度で新しいTimedeltaを返します


この解像度にフロアされた新しいTimedeltaを返すには、 timedelta.floor()を使用します 方法。秒単位の解像度の場合、freqパラメーターを値Sに設定します。

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

import pandas as pd

TimeDeltasは、Pythonの標準の日時ライブラリであり、異なる表現のtimedeltaを使用します。 Timedeltaオブジェクトを作成する

timedelta = pd.Timedelta('4 days 11 hours 38 min 20 s 35 ms 55 ns')

タイムデルタを表示する

print("Timedelta...\n", timedelta)

床のタイムスタンプを秒の床の解像度で返します

timedelta.floor(freq='S')

以下はコードです

import pandas as pd

# TimeDeltas is Python’s standard datetime library uses a different representation timedelta’s
# create a Timedelta object
timedelta = pd.Timedelta('4 days 11 hours 38 min 20 s 35 ms 55 ns')

# display the Timedelta
print("Timedelta...\n", timedelta)

# return the floored Timestamp
# with seconds floored resolution
res = timedelta.floor(freq='S')

# display the floored Timestamp
print("\nTimedelta (seconds floored)...\n", res)

出力

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

Timedelta...
4 days 11:38:20.035000055

Timedelta (seconds floored)...
4 days 11:38:20

  1. PythonPandas-Timedeltaオブジェクトから秒を返します

    Timedeltaオブジェクトから秒を返すには、 timedelta.secondsを使用します 財産。まず、必要なライブラリをインポートします- import pandas as pd TimeDeltasは、Pythonの標準の日時ライブラリであり、異なる表現のtimedeltaを使用します。 Timedeltaオブジェクトを作成する timedelta = pd.Timedelta('10 s 15 ms 33 ns') タイムデルタを表示する print("Timedelta...\n", timedelta) 秒の値を返す timedelt

  2. PythonPandas-tuple-likeという名前のコンポーネントを返します

    tuple-likeという名前のコンポーネントを返すには、timedelta.components。を使用します。 まず、必要なライブラリをインポートします- import pandas as pd TimeDeltasは、Pythonの標準の日時ライブラリであり、異なる表現のtimedeltaを使用します。 Timedeltaオブジェクトを作成する timedelta = pd.Timedelta('1 days 10 min 20 s') tuple-likeという名前のコンポーネントを返します timedelta.components 例 以下はコードです im