Create a group.
Usage
zarr_create_group(
store = NA,
overwrite = FALSE,
chunk_store = NA,
cache_attrs = TRUE,
synchronizer = NA,
path = NA
)
Arguments
- store
: MutableMapping or string, optional Store or path to directory in file system.
- overwrite
: bool, optional If True, delete any pre-existing data in
store
atpath
before creating the group.- chunk_store
: MutableMapping, optional Separate storage for chunks. If not provided,
store
will be used for storage of both chunks and metadata.- cache_attrs
: bool, optional If True (default), user attributes will be cached for attribute read operations. If False, user attributes are reloaded from the store prior to all attribute read operations.
- synchronizer
: object, optional Array synchronizer.
- path
: string, optional Group path within store.