MCPcopy Index your code
hub / github.com/dask/dask / isnull

Function isnull

dask/array/routines.py:2084–2089  ·  view source on GitHub ↗

pandas.isnull for dask arrays

(values)

Source from the content-addressed store, hash-verified

2082
2083
2084def isnull(values):
2085 """pandas.isnull for dask arrays"""
2086 # eagerly raise ImportError, if pandas isn't available
2087 import pandas as pd # noqa: F401
2088
2089 return elemwise(_asarray_isnull, values, dtype="bool")
2090
2091
2092def notnull(values):

Callers 1

notnullFunction · 0.85

Calls 1

elemwiseFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…