Function
notnull
pandas.notnull for dask arrays
(values)
Source from the content-addressed store, hash-verified
| 2042 | |
| 2043 | |
| 2044 | def notnull(values): |
| 2045 | """pandas.notnull for dask arrays""" |
| 2046 | return ~isnull(values) |
| 2047 | |
| 2048 | |
| 2049 | @derived_from(np) |
Tested by
no test coverage detected