arviz.to_zarr — ArviZ dev documentation (original) (raw)
arviz.to_zarr(data, store=None, **kwargs)[source]#
Convert data to zarr, optionally saving to disk if store
is provided.
The zarr storage is using the same group names as the InferenceData.
Parameters:
storezarr.storage, MutableMapping
or str, optional
Zarr storage class or path to desired DirectoryStore. Default (None) a store is created in a temporary directory.
**kwargsdict, optional
Passed to convert_to_inference_data().
Returns:
zarr.hierarchy.group
A zarr hierarchy group containing the InferenceData.
Raises:
If no valid store is found.
References