modin.pandas.TimedeltaIndex.mean¶
- TimedeltaIndex.mean(*, skipna: bool = True, axis: AxisInt | None = 0) native_pd.Timestamp [source]¶
Return the mean value of the Array.
- Parameters:
skipna (bool, default True) – Whether to ignore any NaT elements.
axis (int, optional, default 0) –
- Return type:
scalar Timestamp
See also
numpy.ndarray.mean
Returns the average of array elements along a given axis.
Series.mean
Return the mean value in a Series.
Notes
mean is only defined for Datetime and Timedelta dtypes, not for Period.