pandas.arrays.PandasArray — 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’.

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.

isna()

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

repeat(repeats[, axis])

Repeat elements of a ExtensionArray.

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_numpy([dtype, copy])

Convert the PandasArray to a numpy.ndarray.

unique()

Compute the ExtensionArray of unique values.