Total duration of each element expressed in seconds.
(self)
| 644 | |
| 645 | # Not defined as a property in order to match the Pandas API |
| 646 | def total_seconds(self) -> T_DataArray: |
| 647 | """Total duration of each element expressed in seconds.""" |
| 648 | return self._date_field("total_seconds", np.float64) |
| 649 | |
| 650 | |
| 651 | class CombinedDatetimelikeAccessor( |