Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/dask/dask
/ isna
Function
isna
dask/dataframe/dask_expr/_collection.py:6384–6388 ·
view source on GitHub ↗
(arg)
Source
from the content-addressed store, hash-verified
6382
6383
6384
def
isna(arg):
6385
if
isinstance(arg, FrameBase):
6386
return
arg.isna()
6387
else
:
6388
return
from_pandas(arg).isna()
6389
6390
6391
def
elemwise(op, *args, meta=no_default, out=None, transform_divisions=True, **kwargs):
Callers
1
test_isna
Function · 0.90
Calls
2
from_pandas
Function · 0.85
isna
Method · 0.45
Tested by
1
test_isna
Function · 0.72