- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- 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 hourly floored resolution
To return a new Timedelta floored to this resolution, use the timedelta.floor() method. For hourly floored resolution, set the freq parameter to the value H.
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('4 days 10 hours 2 min 45 s')
Display the Timedelta
print("Timedelta...\n", timedelta)
Return the floored Timestamp with hourly floored resolution
timedelta.floor(freq='H')
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('4 days 10 hours 2 min 45 s') # display the Timedelta print("Timedelta...\n", timedelta) # return the floored Timestamp # with hourly floored resolution res = timedelta.floor(freq='H') # display the floored Timestamp print("\nTimedelta (hourly floored)...\n", res)
Output
This will produce the following code
Timedelta... 4 days 10:02:45 Timedelta (hourly floored)... 4 days 10:00:00
- Related Articles
- Python Pandas - Return a new Timedelta with milliseconds floored resolution
- Python Pandas - Return a new Timedelta with daily floored resolution
- Python Pandas - Return a new Timedelta with minutely floored resolution
- Python Pandas - Return a new Timedelta with seconds floored resolution
- Python Pandas - Return a new Timedelta with hourly ceiling resolution
- Python Pandas - Return a new Timedelta floored to this resolution
- Python Pandas - Return a new Timedelta with milliseconds ceiling resolution
- Python Pandas - Return a new Timedelta with daily ceiling resolution
- Python Pandas - Return a new Timedelta with minutely ceiling resolution
- Python Pandas - Return a new Timedelta with seconds ceiling resolution
- Python Pandas - Return a new Timedelta ceiled to this resolution
- Python Pandas - Round the Timedelta with hourly frequency
- Python Pandas - Round the Timedelta with specified resolution
- Python Pandas - Return the microseconds from Timedelta object
- Python Pandas - Return the nanoseconds from Timedelta object

Advertisements