Save array to the zarr storage format See https://zarr.readthedocs.io for details about the format. Refer to :func:`dask.array.to_zarr` for full documentation. See also -------- dask.array.to_zarr : equivalent function
(self, *args, **kwargs)
| 3002 | return nonzero(self) |
| 3003 | |
| 3004 | def to_zarr(self, *args, **kwargs): |
| 3005 | """Save array to the zarr storage format |
| 3006 | |
| 3007 | See https://zarr.readthedocs.io for details about the format. |
| 3008 | |
| 3009 | Refer to :func:`dask.array.to_zarr` for full documentation. |
| 3010 | |
| 3011 | See also |
| 3012 | -------- |
| 3013 | dask.array.to_zarr : equivalent function |
| 3014 | """ |
| 3015 | return to_zarr(self, *args, **kwargs) |
| 3016 | |
| 3017 | def to_tiledb(self, uri, *args, **kwargs): |
| 3018 | """Save array to the TileDB storage manager |