modin.pandas.TimedeltaIndex.ceil¶

TimedeltaIndex.ceil(freq: Frequency) → TimedeltaIndex[source]¶

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. –