本文简要介绍
pyspark.pandas.DatetimeIndex.indexer_between_time
的用法。用法:
DatetimeIndex.indexer_between_time(start_time: Union[datetime.time, str], end_time: Union[datetime.time, str], include_start: bool = True, include_end: bool = True) → pyspark.pandas.indexes.base.Index
返回一天中特定时间之间值的索引位置(例如:上午 9:00-9:30)。
- start_time, end_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”) 形式传递。
- include_start:布尔值,默认为真
- include_end:布尔值,默认为真
- values_between_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_between_time("00:01", "00:02").sort_values() Int64Index([1, 2], dtype='int64')
>>> psidx.indexer_between_time("00:01", "00:02", include_end=False) Int64Index([1], dtype='int64')
>>> psidx.indexer_between_time("00:01", "00:02", include_start=False) Int64Index([2], dtype='int64')
相关用法
- Python pyspark DatetimeIndex.indexer_at_time用法及代码示例
- Python pyspark DatetimeIndex.is_month_start用法及代码示例
- Python pyspark DatetimeIndex.is_month_end用法及代码示例
- Python pyspark DatetimeIndex.is_quarter_start用法及代码示例
- Python pyspark DatetimeIndex.is_quarter_end用法及代码示例
- Python pyspark DatetimeIndex.is_year_end用法及代码示例
- Python pyspark DatetimeIndex.is_leap_year用法及代码示例
- Python pyspark DatetimeIndex.is_year_start用法及代码示例
- Python pyspark DatetimeIndex.normalize用法及代码示例
- Python pyspark DatetimeIndex.floor用法及代码示例
- Python pyspark DatetimeIndex.month_name用法及代码示例
- Python pyspark DatetimeIndex.day_name用法及代码示例
- Python pyspark DatetimeIndex.round用法及代码示例
- Python pyspark DatetimeIndex.strftime用法及代码示例
- Python pyspark DatetimeIndex.day_of_week用法及代码示例
- Python pyspark DatetimeIndex.weekday用法及代码示例
- Python pyspark DatetimeIndex.ceil用法及代码示例
- Python pyspark DatetimeIndex.dayofweek用法及代码示例
- Python pyspark DatetimeIndex用法及代码示例
- Python pyspark DataFrame.to_latex用法及代码示例
- Python pyspark DataStreamReader.schema用法及代码示例
- Python pyspark DataFrame.align用法及代码示例
- Python pyspark DataFrame.plot.bar用法及代码示例
- Python pyspark DataFrame.to_delta用法及代码示例
- Python pyspark DataFrame.quantile用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.DatetimeIndex.indexer_between_time。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。