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 aca9ae1 commit 8e947d3Copy full SHA for 8e947d3
docs/using/methods.rst
@@ -25,16 +25,16 @@ __getitem__(key)
25
supports the same `indexing and slicing <indexing>`_ as NumPy. The
26
following examples are valid:
27
28
- .. code:: python
+ .. code:: python
29
30
- ds[0]
31
- ds[-1]
32
- ds[0:10]
33
- ds[0:10:2]
34
- ds[0, 1, :]
+ ds[0]
+ ds[-1]
+ ds[0:10]
+ ds[0:10:2]
+ ds[0, 1, :]
35
36
- Please note that Zarr will load the entire dataset into memory if
37
- you use a syntax like ``ds[:]``.
+ The data returns is a NumPy array. Please note that Zarr will load
+ the entire dataset into memory if you use a syntax like ``ds[:]``.
38
39
metadata()
40
Return the dataset's metadata.
0 commit comments