@@ -650,10 +650,10 @@ def create(
650
650
shape : int or tuple of ints
651
651
Array shape.
652
652
chunks : int or tuple of ints, optional
653
- Chunk shape. If True, will be guessed from `shape` and `dtype`. If
654
- False, will be set to `shape`, i.e., single chunk for the whole array.
653
+ Chunk shape. If True, will be guessed from `` shape`` and `` dtype` `. If
654
+ False, will be set to `` shape` `, i.e., single chunk for the whole array.
655
655
If an int, the chunk size in each dimension will be given by the value
656
- of `chunks`. Default is True.
656
+ of `` chunks` `. Default is True.
657
657
dtype : str or dtype, optional
658
658
NumPy dtype.
659
659
compressor : Codec, optional
@@ -676,12 +676,12 @@ def create(
676
676
synchronizer : object, optional
677
677
Array synchronizer.
678
678
overwrite : bool, optional
679
- If True, delete all pre-existing data in `store` at `path` before
679
+ If True, delete all pre-existing data in `` store`` at `` path` ` before
680
680
creating the array.
681
681
path : str, optional
682
682
Path under which array is stored.
683
683
chunk_store : StoreLike or None, default=None
684
- Separate storage for chunks. If not provided, `store` will be used
684
+ Separate storage for chunks. If not provided, `` store` ` will be used
685
685
for storage of both chunks and metadata.
686
686
filters : Iterable[Codec] | Literal["auto"], optional
687
687
Iterable of filters to apply to each chunk of the array, in order, before serializing that
@@ -698,7 +698,7 @@ def create(
698
698
type of the array and the Zarr format specified. For all data types in Zarr V3, and most
699
699
data types in Zarr V2, the default filters are empty. The only cases where default filters
700
700
are not empty is when the Zarr format is 2, and the data type is a variable-length data type like
701
- ` :class:zarr.dtype.VariableLengthUTF8` or ` :class:zarr.dtype.VariableLengthUTF8`. In these cases,
701
+ :class:` zarr.dtype.VariableLengthUTF8` or :class:` zarr.dtype.VariableLengthUTF8`. In these cases,
702
702
the default filters contains a single element which is a codec specific to that particular data type.
703
703
704
704
To create an array with no filters, provide an empty iterable or the value ``None``.
@@ -863,7 +863,7 @@ def create_array(
863
863
type of the array and the Zarr format specified. For all data types in Zarr V3, and most
864
864
data types in Zarr V2, the default filters are empty. The only cases where default filters
865
865
are not empty is when the Zarr format is 2, and the data type is a variable-length data type like
866
- ` :class:zarr.dtype.VariableLengthUTF8` or ` :class:zarr.dtype.VariableLengthUTF8`. In these cases,
866
+ :class:` zarr.dtype.VariableLengthUTF8` or :class:` zarr.dtype.VariableLengthUTF8`. In these cases,
867
867
the default filters contains a single element which is a codec specific to that particular data type.
868
868
869
869
To create an array with no filters, provide an empty iterable or the value ``None``.
@@ -915,7 +915,7 @@ def create_array(
915
915
Ignored otherwise.
916
916
overwrite : bool, default False
917
917
Whether to overwrite an array with the same name in the store, if one exists.
918
- If `True`, all existing paths in the store will be deleted.
918
+ If `` True` `, all existing paths in the store will be deleted.
919
919
config : ArrayConfigLike, optional
920
920
Runtime configuration for the array.
921
921
write_data : bool
0 commit comments