We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4275b46 commit cbfa805Copy full SHA for cbfa805
docs/quickstart.rst
@@ -74,7 +74,7 @@ Zarr supports data compression and filters. For example, to use Blosc compressio
74
... "data/example-3.zarr",
75
... mode="w", shape=(100, 100),
76
... chunks=(10, 10), dtype="f4",
77
- ... compressor=zarr.codecs.BloscCodec(cname="zstd", clevel=3, shuffle=zarr.codecs.BloscShuffle.SHUFFLE)
+ ... compressors=zarr.codecs.BloscCodec(cname="zstd", clevel=3, shuffle=zarr.codecs.BloscShuffle.shuffle)
78
... )
79
>>> z[:, :] = np.random.random((100, 100))
80
>>>
0 commit comments