@@ -212,7 +212,7 @@ prints additional diagnostics, e.g.::
212212 Serializer : BytesCodec(endian=<Endian.little: 'little'>)
213213 Compressors : (BloscCodec(typesize=4, cname=<BloscCname.zstd: 'zstd'>, clevel=3, shuffle=<BloscShuffle.bitshuffle: 'bitshuffle'>, blocksize=0),)
214214 No. bytes : 400000000 (381.5M)
215- No. bytes stored : 3558573
215+ No. bytes stored : 3558573 (3.4M)
216216 Storage ratio : 112.4
217217 Chunks Initialized : 100
218218
@@ -286,7 +286,7 @@ Here is an example using a delta filter with the Blosc compressor::
286286 >>> compressors = zarr.codecs.BloscCodec(cname='zstd', clevel=1, shuffle=zarr.codecs.BloscShuffle.shuffle)
287287 >>> data = np.arange(100000000, dtype='int32').reshape(10000, 10000)
288288 >>> z = zarr.create_array(store='data/example-9.zarr', shape=data.shape, dtype=data.dtype, chunks=(1000, 1000), filters=filters, compressors=compressors)
289- >>> z.info
289+ >>> z.info_complete()
290290 Type : Array
291291 Zarr format : 3
292292 Data type : Int32(endianness='little')
@@ -300,6 +300,9 @@ Here is an example using a delta filter with the Blosc compressor::
300300 Serializer : BytesCodec(endian=<Endian.little: 'little'>)
301301 Compressors : (BloscCodec(typesize=4, cname=<BloscCname.zstd: 'zstd'>, clevel=1, shuffle=<BloscShuffle.shuffle: 'shuffle'>, blocksize=0),)
302302 No. bytes : 400000000 (381.5M)
303+ No. bytes stored : 826
304+ Storage ratio : 484261.5
305+ Chunks Initialized : 0
303306
304307For more information about available filter codecs, see the `Numcodecs
305308<https://numcodecs.readthedocs.io/> `_ documentation.
@@ -616,7 +619,7 @@ Sharded arrays can be created by providing the ``shards`` parameter to :func:`za
616619 Serializer : BytesCodec(endian=None)
617620 Compressors : (ZstdCodec(level=0, checksum=False),)
618621 No. bytes : 100000000 (95.4M)
619- No. bytes stored : 3981473
622+ No. bytes stored : 3981473 (3.8M)
620623 Storage ratio : 25.1
621624 Shards Initialized : 100
622625
0 commit comments