pandas.Categorical.__array__

Categorical.__array__(dtype=None, copy=None)[source]

The numpy array interface.

Users should not call this directly. Rather, it is invoked by numpy.array() and numpy.asarray().

Parameters:
dtype:np.dtype or None

Specifies the the dtype for the array.

copy:bool or None, optional

See numpy.asarray().

Returns:
numpy.array

A numpy array of either the specified dtype or, if dtype==None (default), the same dtype as categorical.categories.dtype.

Examples

>>> cat = pd.Categorical(['a', 'b'], ordered=True)

The following calls cat.__array__

>>> np.asarray(cat)
array(['a', 'b'], dtype=object)

© 2008–2011, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
© 2011–2025, Open source contributors
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/2.3.0/reference/api/pandas.Categorical.__array__.html