Skip to content

Commit

Permalink
update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
b8raoult committed Apr 1, 2024
1 parent aca9ae1 commit 8e947d3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docs/using/methods.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ __getitem__(key)
supports the same `indexing and slicing <indexing>`_ as NumPy. The
following examples are valid:

.. code:: python
.. code:: python
ds[0]
ds[-1]
ds[0:10]
ds[0:10:2]
ds[0, 1, :]
ds[0]
ds[-1]
ds[0:10]
ds[0:10:2]
ds[0, 1, :]
Please note that Zarr will load the entire dataset into memory if
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[:]``.

metadata()
Return the dataset's metadata.
Expand Down

0 comments on commit 8e947d3

Please sign in to comment.