 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Python Pandas - Return a new Timedelta with minutely ceiling resolution
To return a new Timedelta ceiled to this resolution, use the timedelta.ceil() method. For minutely ceiling resolution, set the freq parameter to the value T.
At first, import the required libraries −
import pandas as pd
TimeDeltas is Python’s standard datetime library uses a different representation timedelta’s. Create a Timedelta object
timedelta = pd.Timedelta('2 days 10 hours 45 min 20 s')  Display the Timedelta
print("Timedelta...\n", timedelta) Return the ceiled Timestamp with minutely ceiling resolution
timedelta.ceil(freq='T')
Example
Following is the code
 import pandas as pd # TimeDeltas is Python’s standard datetime library uses a different representation timedelta’s # create a Timedelta object timedelta = pd.Timedelta('2 days 10 hours 45 min 20 s') # display the Timedelta print("Timedelta...\n", timedelta) # return the ceiled Timestamp # with minutely ceiling resolution res = timedelta.ceil(freq='T') # display the ceiled Timestamp print("\nTimedelta (minutely ceiled)...\n", res)  Output
This will produce the following code
Timedelta... 2 days 10:45:20 Timedelta (minutely ceiled)... 2 days 10:46:00
Advertisements
 