zarr.save_array
zarr.save_array ¶
save_array(
store: StoreLike,
arr: NDArrayLike,
*,
zarr_format: ZarrFormat | None = None,
path: str | None = None,
storage_options: dict[str, Any] | None = None,
**kwargs: Any,
) -> None
Save a NumPy array to the local file system.
Follows a similar API to the NumPy save() function.
Parameters:
-
store(StoreLike) –StoreLike object to open. See the storage documentation in the user guide for a description of all valid StoreLike values.
-
arr(ndarray) –NumPy array with data to save.
-
zarr_format((2, 3, None), default:2) –The zarr format to use when saving. The default is
None, which will use the default Zarr format defined in the global configuration object. -
path(str or None, default:None) –The path within the store where the array will be saved.
-
storage_options(dict, default:None) –If using an fsspec URL to create the store, these will be passed to the backend implementation. Ignored otherwise.
-
**kwargs(Any, default:{}) –Passed through to
create, e.g., compressor.