Skip to content

pd.Index.is_object

pandasIndex.is_object()

Important

Currently, Bodo diverges from the Pandas API for Indices of boolean values. Bodo always returns True, whereas Pandas returns False if the index was constructed from a pd.array of booleans.

Example Usage

>>> @bodo.jit
... def f(I):
...   return I.is_object()

>>> I = pd.Index([1, 2, 3])
>>> f(I)
False

Modifications and computations