Skip to content

Commit

Permalink
Update content/xarray.rst
Browse files Browse the repository at this point in the history
Co-authored-by: Marijn van Vliet <[email protected]>
  • Loading branch information
gregordecristoforo and wmvanvliet authored Oct 23, 2024
1 parent aec1232 commit 62e8731
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/xarray.rst
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ We can select a single ``DataArray`` from the dataset using a dictionary-like sy

The new variable ``temperature_data`` is a ``DataArray`` object. An xarray ``Dataset`` typically consists of multiple ``DataArrays``.

Xarray uses Numpy(-like) arrays under the hood, we can always access the raw data using the ``.values`` attribute: ::
Xarray uses Numpy(-like) arrays under the hood, we can always access the underlying Numpy array using the ``.values`` attribute: ::

>>> temperature_numpy = ds['Temperature_isobaric'].values
>>> temperature_numpy
Expand Down

0 comments on commit 62e8731

Please sign in to comment.