@@ -212,7 +212,7 @@ prints additional diagnostics, e.g.::
212
212
Serializer : BytesCodec(endian=<Endian.little: 'little'>)
213
213
Compressors : (BloscCodec(typesize=4, cname=<BloscCname.zstd: 'zstd'>, clevel=3, shuffle=<BloscShuffle.bitshuffle: 'bitshuffle'>, blocksize=0),)
214
214
No. bytes : 400000000 (381.5M)
215
- No. bytes stored : 3558573
215
+ No. bytes stored : 3558573 (3.4M)
216
216
Storage ratio : 112.4
217
217
Chunks Initialized : 100
218
218
@@ -286,7 +286,7 @@ Here is an example using a delta filter with the Blosc compressor::
286
286
>>> compressors = zarr.codecs.BloscCodec(cname='zstd', clevel=1, shuffle=zarr.codecs.BloscShuffle.shuffle)
287
287
>>> data = np.arange(100000000, dtype='int32').reshape(10000, 10000)
288
288
>>> 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()
290
290
Type : Array
291
291
Zarr format : 3
292
292
Data type : Int32(endianness='little')
@@ -300,6 +300,9 @@ Here is an example using a delta filter with the Blosc compressor::
300
300
Serializer : BytesCodec(endian=<Endian.little: 'little'>)
301
301
Compressors : (BloscCodec(typesize=4, cname=<BloscCname.zstd: 'zstd'>, clevel=1, shuffle=<BloscShuffle.shuffle: 'shuffle'>, blocksize=0),)
302
302
No. bytes : 400000000 (381.5M)
303
+ No. bytes stored : 826
304
+ Storage ratio : 484261.5
305
+ Chunks Initialized : 0
303
306
304
307
For more information about available filter codecs, see the `Numcodecs
305
308
<https://numcodecs.readthedocs.io/> `_ documentation.
@@ -616,7 +619,7 @@ Sharded arrays can be created by providing the ``shards`` parameter to :func:`za
616
619
Serializer : BytesCodec(endian=None)
617
620
Compressors : (ZstdCodec(level=0, checksum=False),)
618
621
No. bytes : 100000000 (95.4M)
619
- No. bytes stored : 3981473
622
+ No. bytes stored : 3981473 (3.8M)
620
623
Storage ratio : 25.1
621
624
Shards Initialized : 100
622
625
0 commit comments