Saturday, September 6, 2025
HomeLanguagesPython | Pandas Timedelta.ceil()

Python | Pandas Timedelta.ceil()

Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier.

Timedelta is a subclass of datetime.timedelta, and behaves in a similar manner. It is the pandas equivalent of python’s datetime.timedelta and is interchangeable with it in most cases. Timedelta.ceil() method in pandas.Timedelta is used to return new Timedelta ceiled to this resolution.

Syntax: Timedelta.ceil()

Parameters:
freq : a freq string indicating the ceiling resolution

Returns: new ceiled Timedelta.

Code #1:




# importing pandas as pd 
import pandas as pd 
import datetime
  
# Create the Timedelta object 
td = pd.Timedelta(5.05, unit ='s')
  
# Print the Timedelta object 
  
print(td.ceil('S'))


Output:

0 days 00:00:06

Code #2:




# importing pandas as pd 
import pandas as pd 
import datetime
  
# Create the Timedelta object 
td = pd.Timedelta(13.25, unit ='h')
  
# Print the Timedelta object 
  
print(td.ceil('H'))


Output:

 0 days 14:00:00

Code #3:




# importing pandas as pd 
import pandas as pd 
from datetime import datetime
  
# Create the Timedelta object 
td = pd.Timedelta('7 days 15 hours')
  
# Print the Timedelta object 
  
print(td.ceil('D'))


Output:

 8 days 00:00:00
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32270 POSTS0 COMMENTS
Milvus
82 POSTS0 COMMENTS
Nango Kala
6639 POSTS0 COMMENTS
Nicole Veronica
11803 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11869 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7029 POSTS0 COMMENTS
Thapelo Manthata
6704 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS