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

PythonPandas-DateTimeIndexの特定の時刻の間の値のインデックス位置を返します


DateTimeIndexの特定の時刻の間の値のインデックス位置を返すには、 DateTimeIndex.indexer_between_time()を使用します。 メソッド。

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

import pandas as pd

期間5、頻度をT、つまり分としてDatetimeIndexを作成します。タイムゾーンはオーストラリア/アデレード-

datetimeindex = pd.date_range('2021-10-30 02:30:50', periods=5, tz='Australia/Adelaide', freq='20T')

DateTimeIndexを表示-

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

特定の時刻の間の値のインデックス位置を表示します。 「start_time」は「02:30:50」に設定され、「end_time」は「03:20:50」に設定されます-

print("\nIndex locations of values between particular time of day...\n",
datetimeindex.indexer_between_time('02:30:50','03:20:50'))

以下はコードです-

import pandas as pd

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

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

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

# display index locations of values at particular time of day i.e. 03:10:50 here
print("\nIndex locations of values at particular time of day...\n",
datetimeindex.indexer_at_time('2021-10-30 03:10:50'))

# display index locations of values between particular time of day
# The "start_time" is set '02:30:50' and "end_time" '03:20:50'
print("\nIndex locations of values between particular time of day...\n",
datetimeindex.indexer_between_time('02:30:50','03:20:50'))

出力

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

DateTimeIndex...
DatetimeIndex(['2021-10-30 02:30:50+10:30', '2021-10-30 02:50:50+10:30',
'2021-10-30 03:10:50+10:30', '2021-10-30 03:30:50+10:30',
'2021-10-30 03:50:50+10:30'],
dtype='datetime64[ns, Australia/Adelaide]', freq='20T')
DateTimeIndex frequency...
<20 * Minutes>

Index locations of values at particular time of day...
[2]

Index locations of values between particular time of day...
[0 1 2]

  1. PythonPandas-UTCの日時を表す新しいタイムスタンプを返します

    UTCの日時を表す新しいタイムスタンプを返すには、 timestamp.utcnow()を使用します 方法。まず、必要なライブラリをインポートします- import pandas as pd タイムスタンプの作成 timestamp = pd.Timestamp('2021-10-16T15:12:34.261811624', tz='UTC') UTCの日時を含む新しいタイムスタンプ timestamp.utcnow() 例 以下はコードです import pandas as pd # creating a timestamp timestamp

  2. PythonPandasの2つのインデックス値の間のDataFrame行を選択します

    Pandas DataFrameをスライスして、2つのインデックス値の間の行を選択できます。例を見て、それがどのように行われるかを見てみましょう。 ステップ 2次元、サイズ変更可能、潜在的に異種の表形式データ、 dfを作成します 。 入力DataFrame、 dfを印刷します 。 インデックスの下限の変数を初期化します。 インデックスの上限に対して別の変数を初期化します。 df [index_lower_limit:index_upper_limit]を使用します DataFrameを範囲インデックスに出力します。 例 import pandas as pd df = pd.Dat