modin.pandas.TimedeltaIndex.ceil¶
- TimedeltaIndex.ceil(freq: Frequency) TimedeltaIndex[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.30.0/snowpark-python/src/snowflake/snowpark/modin/plugin/extensions/timedelta_index.py#L163-L166)¶
- Perform ceil operation on the data to the specified freq. - Parameters:
- freq (str or Offset) – The frequency level to ceil the index to. Must be a fixed frequency like ‘S’ (second) not ‘ME’ (month end). See frequency aliases for a list of possible freq values. 
- Return type:
- TimedeltaIndex with ceil values. 
- Raises:
- ValueError if the freq cannot be converted. –