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

Method to_zarr

dask/array/core.py:3002–3013  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Calls 1

to_zarrFunction · 0.85