本文简要介绍
pyspark.pandas.DatetimeIndex.ceil
的用法。用法:
DatetimeIndex.ceil(freq: Union[str, pandas._libs.tslibs.offsets.DateOffset], *args: Any, **kwargs: Any) → pyspark.pandas.indexes.datetimes.DatetimeIndex
对指定频率的数据进行ceil操作。
- freq:str 或偏移量
索引上限的频率级别。必须是固定频率,例如“S”(秒)而不是“ME”(月末)。
- DatetimeIndex
- ValueError(如果
freq
无法转换)。
- ValueError(如果
参数:
返回:
抛出:
例子:
>>> rng = ps.date_range('1/1/2018 11:59:00', periods=3, freq='min') >>> rng.ceil('H') DatetimeIndex(['2018-01-01 12:00:00', '2018-01-01 12:00:00', '2018-01-01 13:00:00'], dtype='datetime64[ns]', freq=None)
相关用法
- Python pyspark DatetimeIndex.is_month_start用法及代码示例
- Python pyspark DatetimeIndex.normalize用法及代码示例
- Python pyspark DatetimeIndex.is_month_end用法及代码示例
- Python pyspark DatetimeIndex.is_quarter_start用法及代码示例
- Python pyspark DatetimeIndex.is_quarter_end用法及代码示例
- Python pyspark DatetimeIndex.floor用法及代码示例
- Python pyspark DatetimeIndex.is_year_end用法及代码示例
- Python pyspark DatetimeIndex.is_leap_year用法及代码示例
- Python pyspark DatetimeIndex.indexer_between_time用法及代码示例
- Python pyspark DatetimeIndex.month_name用法及代码示例
- Python pyspark DatetimeIndex.day_name用法及代码示例
- Python pyspark DatetimeIndex.round用法及代码示例
- Python pyspark DatetimeIndex.is_year_start用法及代码示例
- Python pyspark DatetimeIndex.indexer_at_time用法及代码示例
- Python pyspark DatetimeIndex.strftime用法及代码示例
- Python pyspark DatetimeIndex.day_of_week用法及代码示例
- Python pyspark DatetimeIndex.weekday用法及代码示例
- 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.ceil。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。