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

PythonPandas-特定の時系列頻度でDateTimeIndexから秒を抽出します


特定の時系列頻度でDateTimeIndexから秒を抽出するには、 DateTimeIndex.secondを使用します プロパティ。

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

import pandas as pd

期間6、頻度をS、つまり秒としてDatetimeIndexを作成します。タイムゾーンはオーストラリア/シドニー-

datetimeindex = pd.date_range('2021-10-20 02:30:50', periods=6, tz='Australia/Sydney', freq='S')

DateTimeIndexを表示-

print("DateTimeIndex...\n", datetimeindex)

秒を取得-

print("\nGetting the seconds..\n",datetimeindex.second)

以下はコードです-

import pandas as pd

# DatetimeIndex with period 6 and frequency as S i.e. seconds
# The timezone is Australia/Sydney
datetimeindex = pd.date_range('2021-10-20 02:30:50', periods=6, tz='Australia/Sydney', freq='S')

# display DateTimeIndex
print("DateTimeIndex...\n", datetimeindex)

# display DateTimeIndex frequency
print("DateTimeIndex frequency...\n", datetimeindex.freq)

# get the seconds
print("\nGetting the seconds..\n",datetimeindex.second)

出力

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

DateTimeIndex...
DatetimeIndex(['2021-10-20 02:30:50+11:00', '2021-10-20 02:30:51+11:00',
'2021-10-20 02:30:52+11:00', '2021-10-20 02:30:53+11:00',
'2021-10-20 02:30:54+11:00', '2021-10-20 02:30:55+11:00'],
dtype='datetime64[ns, Australia/Sydney]', freq='S')
DateTimeIndex frequency...
<Second>

Getting the seconds..
Int64Index([50, 51, 52, 53, 54, 55], dtype='int64')

  1. PythonPandas-特定の時系列頻度でDateTimeIndexから時間を抽出します

    特定の時系列頻度でDateTimeIndexから時間を抽出するには、 DateTimeIndex.hourを使用します プロパティ。 まず、必要なライブラリをインポートします- import pandas as pd 期間6、頻度をH、つまり時間とするDatetimeIndex。タイムゾーンはオーストラリア/シドニー- datetimeindex = pd.date_range('2021-10-20 02:35:55', periods=6, tz='Australia/Sydney', freq='H') DateTimeIndexを

  2. PythonPandas-タイムデルタを秒の頻度で丸めます

    指定された解像度でTimedeltaを丸めるには、 timestamp.round()を使用します 方法。 freqを使用して秒の周波数分解能を設定します 値が‘s’のパラメータ 。 まず、必要なライブラリをインポートします- import pandas as pd Timedeltaオブジェクトを作成する- timedelta = pd.Timedelta('1 days 11 hours 22 min 25 s 50 ms 45 ns') タイムデルタを表示- print("Timedelta...\n", timedelta) 秒の頻度で丸