Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/xarray.rst
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ The following image shows the structure of this particular Xarray Dataset:
Accessing and manipulating data in Xarray
-----------------------------------------

An xarray ``Dataset`` typically consists of multiple ``DataArrays``. Our example dataset has 7 of them (``u-component_of_wind_isobaric``, ``LambertConformal_Projection``, ``lat``, ``lon``, `Geopotential_height_isobaric``, ``v-component_of_wind_isobaric``, ``Temperature_isobaric``).
An xarray ``Dataset`` typically consists of multiple ``DataArrays``. Our example dataset has 7 of them (``u-component_of_wind_isobaric``, ``LambertConformal_Projection``, ``lat``, ``lon``, ``Geopotential_height_isobaric``, ``v-component_of_wind_isobaric``, ``Temperature_isobaric``).
We can select a single ``DataArray`` from the dataset using a dictionary-like syntax: ::

>>> temperature_data = ds['Temperature_isobaric']
Expand Down
Loading