Closed
Description
Minimal, reproducible code sample, a copy-pastable example if possible
import numpy as np
import zarr
rows = [3, 4]
a = np.arange(20).reshape((10, 2))
print(a[rows]) # OK
z = zarr.array(a)
print(z[rows]) # indexerror
Problem description
Based on this I expected this to work and to return the same rows as numpy. But it raises in index error.
Version and installation information
Please provide the following:
- Value of
zarr.__version__
: 2.11.3
Metadata
Metadata
Assignees
Labels
No labels