Skip to content

Commit 85a5f71

Browse files
docs: small formatting corrections
1 parent 83329ef commit 85a5f71

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/docs/user-guide/key-concepts.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ As [mentioned before](getting-started/index.md), [xarray][xarray] offers two typ
1313

1414
### DataArray
1515

16-
A [DataArray][xarray.DataArray] is the smallest unit of a data object in xarray. In the analogy of the data objects as plots, a DataArray would correspond to a single curve in a chart.
16+
A [DataArray][xarray.DataArray] is the smallest unit of a data object in xarray. In the analogy of the data objects as plots, a DataArray would correspond to a single curve on a chart.
1717

1818
A DataArray has the following properties:
1919

2020
| DataArray `da` | |
2121
| :---------- | :----------------------------------- |
22-
| `da.values` | the data, in the form of an [ndarray][numpy.ndarray] |
23-
| `da.dims` | the names of the data's dimensions (e.g. `'y','x'` instead of `0,1`) |
22+
| `da.values` | the data, in the form of an [`ndarray`][numpy.ndarray] |
23+
| `da.dims` | the names of the data's dimensions (e.g. `'y'`, `'x'` instead of `0`, `1`) |
2424
| `da.coords` | the axes for each dimension (there may be several for the same dimension), which are called [Coordinates][xarray.Coordinates] in xarray |
2525
| `da.attrs` | any other user-defined metadata |
2626

0 commit comments

Comments
 (0)