Skip to content

pd.Index.shape

pandasIndex.shape

Example Usage

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

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