Python Pandas - Return a new Timedelta with minutely floored resolution


To return a new Timedelta floored to this resolution, use the timedelta.floor() method. For minutely floored 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('8 days 11 hours 39 min 18 s')

Display the Timedelta

print("Timedelta...\n", timedelta)

Return the floored Timestamp with minutely floored resolution

timedelta.floor(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('8 days 11 hours 39 min 18 s')

# display the Timedelta
print("Timedelta...\n", timedelta)

# return the floored Timestamp
# with minutely floored resolution
res = timedelta.floor(freq='T')

# display the floored Timestamp
print("\nTimedelta (minutely floored)...\n", res)

Output

This will produce the following code

Timedelta...
8 days 11:39:18

Timedelta (minutely floored)...
8 days 11:39:00

Updated on: 14-Oct-2021

42 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements