MCPcopy Create free account
hub / github.com/dask/dask / isnull

Function isnull

dask/array/routines.py:2036–2041  ·  view source on GitHub ↗

pandas.isnull for dask arrays

(values)

Source from the content-addressed store, hash-verified

2034
2035
2036def isnull(values):
2037 """pandas.isnull for dask arrays"""
2038 # eagerly raise ImportError, if pandas isn't available
2039 import pandas as pd # noqa
2040
2041 return elemwise(_asarray_isnull, values, dtype="bool")
2042
2043
2044def notnull(values):

Callers 1

notnullFunction · 0.85

Calls 1

elemwiseFunction · 0.90

Tested by

no test coverage detected