pyspark.pandas.DatetimeIndex.indexer_at_time

DatetimeIndex。 indexer_at_time ( 時間:聯盟(datetime.time,str],asof:bool= )→pyspark.pandas.indexes.base.Index

返回索引值的位置在一天中的特定時間(例如:)早上九時三十分。

參數
時間 datetime.timeor str

時間的流逝作為對象(datetime.time)或在適當的格式字符串(“% H: % M”,“% H % M”,“%我:% M % p”,“我% % M % p”,“% H: % M: % S”、“% H % M % S”,“%我:% M: % S % p ", " % % M % S % p ")。

返回
values_at_time 整數指數

例子

> > >psidx=psdate_range(“2000-01-01”,=3,頻率=“T”)> > >psidxDatetimeIndex([2000-01-01就是,‘2000-01-01 00:01:00’,“2000-01-01 00:02:00”),dtype = ' datetime64 (ns),頻率=沒有)
> > >psidxindexer_at_time(“0”)Int64Index ([0] dtype =“int64”)
> > >psidxindexer_at_time(“00:01”)Int64Index ([1], dtype =“int64”)