bigframes.pandas.api.typing.DatetimeMethods.total_seconds# DatetimeMethods.total_seconds() → Series[source]# Return total duration of each element expressed in seconds. Examples: >>> s = bpd.Series([pd.Timedelta("1d1m1s1us")]) >>> s 0 1 days 00:01:01.000001 dtype: duration[us][pyarrow] >>> s.dt.total_seconds() 0 86461.000001 dtype: Float64