MCPcopy 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
6384def isna(arg):
6385 if isinstance(arg, FrameBase):
6386 return arg.isna()
6387 else:
6388 return from_pandas(arg).isna()
6389
6390
6391def elemwise(op, *args, meta=no_default, out=None, transform_divisions=True, **kwargs):

Callers 1

test_isnaFunction · 0.90

Calls 2

from_pandasFunction · 0.85
isnaMethod · 0.45

Tested by 1

test_isnaFunction · 0.72