Skip to content

pd.DataFrame.notnull

pandas.DataFrame.notnull()

Example Usage

>>> @bodo.jit
... def f():
...   df = pd.DataFrame({"A": [1,None,3]})
...   return df.notnull()
>>> f()
       A
0   True
1  False
2   True