modin.pandas.TimedeltaIndex.mean¶
- TimedeltaIndex.mean(*, skipna: bool = True, axis: AxisInt | None = 0) native_pd.Timedelta[source]¶
Return the mean value of the Timedelta values.
- Parameters:
skipna (bool, default True) – Whether to ignore any NaT elements.
axis (int, optional, default 0) –
- Return type:
scalar Timedelta
Examples
See also
numpy.ndarray.meanReturns the average of array elements along a given axis.
Series.meanReturn the mean value in a Series.