Python Pandas - Return a new Timedelta floored to this resolution


To return a new Timedelta floored to this resolution, use the timedelta.floor() method. For specific floored resolution, use the freq parameter.

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('6 days 1 min 30 s')

Display the Timedelta

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

Return the floored Timestamp floored to days frequency

timedelta.floor(freq='D')

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('6 days 1 min 30 s')

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

# return the floored Timestamp
# floored to days frequency
res = timedelta.floor(freq='D')

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

Output

This will produce the following code

Timedelta...
6 days 00:01:30

Timedelta (floored)...
6 days 00:00:00

Updated on: 14-Oct-2021

51 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements