Skip to content

pd.Index.isnull

pandasIndex.isnull()

不支持的索引类型

  • 多重索引
  • 时间间隔索引

示例用法

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

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

转换