Saturday, May 9, 2026
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

1 COMMENT

Most Popular

Dominic
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6892 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12107 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS