Describe the issue linked to the documentation
data = np.random.randint(0, 100, (1000, 1000,), dtype=int)
zarr_path = 'panda.zarr'
zstore = zarr.open(zarr_path, mode='w')
compressor = Blosc(cname='zstd', clevel=3, shuffle=Blosc.BITSHUFFLE)
zstore.create_dataset('panda', data=data, chunks=False, overwrite=True,compressor=compressor)
it doesnt compress the data remain the same size
Suggested fix for documentation
No response
Describe the issue linked to the documentation
it doesnt compress the data remain the same size
Suggested fix for documentation
No response