Return the indices of the elements that are non-zero. Refer to :func:`dask.array.nonzero` for full documentation. See Also -------- dask.array.nonzero : equivalent function
(self)
| 2995 | return repeat(self, repeats, axis=axis) |
| 2996 | |
| 2997 | def nonzero(self): |
| 2998 | """Return the indices of the elements that are non-zero. |
| 2999 | |
| 3000 | Refer to :func:`dask.array.nonzero` for full documentation. |
| 3001 | |
| 3002 | See Also |
| 3003 | -------- |
| 3004 | dask.array.nonzero : equivalent function |
| 3005 | """ |
| 3006 | from dask.array.routines import nonzero |
| 3007 | |
| 3008 | return nonzero(self) |
| 3009 | |
| 3010 | def to_zarr(self, *args, **kwargs): |
| 3011 | """Save array to the zarr storage format |