pandas.Timedelta.as_unit#
- Timedelta.as_unit(unit, round_ok=True)#
Convert the underlying int64 representation to the given unit.
- Parameters:
- unit{“ns”, “us”, “ms”, “s”}
- round_okbool, default True
If False and the conversion requires rounding, raise.
- Returns:
- Timedelta
Examples
>>> td = pd.Timedelta('1001ms') >>> td Timedelta('0 days 00:00:01.001000') >>> td.as_unit('s') Timedelta('0 days 00:00:01')