arviz.to_zarr#
- 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:
- store
zarr.storage
,MutableMapping
orstr
, optional Zarr storage class or path to desired DirectoryStore. Default (None) a store is created in a temporary directory.
- **kwargs
dict
, optional Passed to
convert_to_inference_data()
.
- store
- Returns:
zarr.hierarchy.group
A zarr hierarchy group containing the InferenceData.
- Raises:
TypeError
If no valid store is found.
References