pandas.arrays.TimedeltaArray — pandas 0.24.0rc1 documentation (original) (raw)

argsort([ascending, kind])

Return the indices that would sort this array.

astype(dtype[, copy])

Cast to a NumPy array with ‘dtype’.

ceil(freq[, ambiguous, nonexistent])

Perform ceil operation on the data to the specified freq.

copy([deep])

Return a copy of the array.

dropna()

Return ExtensionArray without NA values

factorize([na_sentinel])

Encode the extension array as an enumerated type.

fillna([value, method, limit])

Fill NA/NaN values using the specified method.

floor(freq[, ambiguous, nonexistent])

Perform floor operation on the data to the specified freq.

isna()

A 1-D array indicating if each value is missing.

max([axis, skipna])

Return the maximum value of the Array or maximum along an axis.

min([axis, skipna])

Return the minimum value of the Array or minimum along an axis.

repeat(repeats, *args, **kwargs)

Repeat elements of an array.

round(freq[, ambiguous, nonexistent])

Perform round operation on the data to the specified freq.

searchsorted(value[, side, sorter])

Find indices where elements should be inserted to maintain order.

shift([periods, fill_value])

Shift values by desired number.

take(indices[, allow_fill, fill_value])

Take elements from an array.

to_pytimedelta()

Return Timedelta Array/Index as object ndarray of datetime.timedelta objects.

total_seconds()

Return total duration of each element expressed in seconds.

unique()

Compute the ExtensionArray of unique values.

value_counts([dropna])

Return a Series containing counts of unique values.

view([dtype])

New view on this array with the same data.