
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
Python Pandas - Round the Timedelta with minutely frequency
To round the Timedelta with specified resolution, use the timestamp.round() method. Set the minutely frequency resolution using the freq parameter with 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 35 ms 55 ns')
Display the Timedelta −
print("Timedelta...\n", timedelta)
Return the rounded Timestamp with minutely frequency. Here, the specified resolution is set using the "freq" parameter. −
timedelta.round(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 35 ms 55 ns') # display the Timedelta print("Timedelta...\n", timedelta) # return the rounded Timestamp # with minutely frequency # Here, the specified resolution is set using the "freq" parameter res = timedelta.round(freq='T') # display the rounded Timestamp print("\nTimedelta (minutely rounded)...\n", res)
Output
This will produce the following code −
Timedelta... 2 days 10:45:20.035000055 Timedelta (minutely rounded)... 2 days 10:45:00
- Related Articles
- Python Pandas - Round the Timedelta with hourly frequency
- Python Pandas - Round the Timedelta with seconds frequency
- Python Pandas - Round the Timedelta with daily frequency
- Python Pandas - Round the Timedelta with specified resolution
- Python Pandas - Return a new Timedelta with minutely ceiling resolution
- Python Pandas - Return a new Timedelta with minutely floored resolution
- Python Pandas - Convert given Timestamp to Period with minutely frequency
- Python Pandas - Return the Period object as a timestamp with minutely frequency
- Python Pandas - Perform ceil operation on the TimeDeltaIndex object with minutely frequency
- Python Pandas - How to perform floor operation on the DateTimeIndex with minutely frequency
- Python Pandas - How to perform ceil operation on the DateTimeIndex with minutely frequency
- Python Pandas - How to Round the DateTimeIndex with hourly frequency
- Python Pandas - How to Round the DateTimeIndex with minute frequency
- Python Pandas - How to Round the DateTimeIndex with seconds frequency
- Python Pandas - How to Round the DateTimeIndex with milliseconds frequency

Advertisements