A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://pandas.pydata.org/docs/reference/api/pandas.TimedeltaIndex.seconds.html below:

pandas.TimedeltaIndex.seconds — pandas 2.3.1 documentation

pandas.TimedeltaIndex.seconds#
property TimedeltaIndex.seconds[source]#

Number of seconds (>= 0 and less than 1 day) for each element.

Examples

For Series:

>>> ser = pd.Series(pd.to_timedelta([1, 2, 3], unit='s'))
>>> ser
0   0 days 00:00:01
1   0 days 00:00:02
2   0 days 00:00:03
dtype: timedelta64[ns]
>>> ser.dt.seconds
0    1
1    2
2    3
dtype: int32

For TimedeltaIndex:

>>> tdelta_idx = pd.to_timedelta([1, 2, 3], unit='s')
>>> tdelta_idx
TimedeltaIndex(['0 days 00:00:01', '0 days 00:00:02', '0 days 00:00:03'],
               dtype='timedelta64[ns]', freq=None)
>>> tdelta_idx.seconds
Index([1, 2, 3], dtype='int32')

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4