當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python pyspark DatetimeIndex.indexer_at_time用法及代碼示例


本文簡要介紹 pyspark.pandas.DatetimeIndex.indexer_at_time 的用法。

用法:

DatetimeIndex.indexer_at_time(time: Union[datetime.time, str], asof: bool = False) → pyspark.pandas.indexes.base.Index

在一天中的特定時間返回值的索引位置(例如:上午 9:30)。

參數

timedatetime.time 或 str

時間以對象 (datetime.time) 或適當格式的字符串 (“%H:%M”、“%H%M”、“%I:%M%p”、“%I%M%p”、“%H:%M:%S”、“%H%M%S”、“%I:%M:%S%p”、“%I%M%S%p”) 形式傳遞.

返回

values_at_time整數索引

例子

>>> psidx = ps.date_range("2000-01-01", periods=3, freq="T")
>>> psidx  
DatetimeIndex(['2000-01-01 00:00:00', '2000-01-01 00:01:00',
               '2000-01-01 00:02:00'],
              dtype='datetime64[ns]', freq=None)
>>> psidx.indexer_at_time("00:00")
Int64Index([0], dtype='int64')
>>> psidx.indexer_at_time("00:01")
Int64Index([1], dtype='int64')

相關用法


注:本文由純淨天空篩選整理自spark.apache.org大神的英文原創作品 pyspark.pandas.DatetimeIndex.indexer_at_time。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。