8000 fix typos in online-tutorial 01_xarray_fundamentals.ipynb · xarray-contrib/xarray-tutorial@f966d36 · GitHub
[go: up one dir, main page]

Skip to content

Commit f966d36

Browse files
committed
fix typos in online-tutorial 01_xarray_fundamentals.ipynb
1 parent 5fabd1f commit f966d36

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

workshops/online-tutorial-series/01_xarray_fundamentals.ipynb

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
" Implementing such functionality is left to individual users and\n",
3333
" domain-specific packages.\n",
3434
"\n",
35-
"- xarry expands on the capabilities of NumPy arrays, providing a lot of\n",
35+
"- xarray expands on the capabilities of NumPy arrays, providing a lot of\n",
3636
" streamline data manipulation.\n",
3737
"\n",
3838
"- Xarray's interface is based largely on the netCDF data model (variables,\n",
@@ -236,7 +236,7 @@
236236
"metadata": {},
237237
"outputs": [],
238238
"source": [
239-
"# Extract the sst variable/datarray\n",
239+
"# Extract the sst variable/data array\n",
240240
"ds[\"sst\"] # Equivalent to ds.sst"
241241
]
242242
},
@@ -260,7 +260,7 @@
260260
"metadata": {},
261261
"outputs": [],
262262
"source": [
263-
"# dataarray/variable dimensions\n",
263+
"# data array/variable dimensions\n",
264264
"ds.sst.dims"
265265
]
266266
},
@@ -270,7 +270,7 @@
270270
"metadata": {},
271271
"outputs": [],
272272
"source": [
273-
"# datarray/variable coordinates\n",
273+
"# data array/variable coordinates\n",
274274
"ds.sst.coords"
275275
]
276276
},
@@ -280,7 +280,7 @@
280280
"metadata": {},
281281
"outputs": [],
282282
"source": [
283-
"# dataarray/variable attributes\n",
283+
"# data array/variable attributes\n",
284284
"ds.sst.attrs"
285285
]
286286
},
@@ -345,7 +345,7 @@
345345
},
346346
"outputs": [],
347347
"source": [
348-
"# extracting a coorindate variable from .coords\n",
348+
"# extracting a coordinate variable from .coords\n",
349349
"ds.coords[\"time\"]"
350350
]
351351
},
@@ -389,7 +389,7 @@
389389
"metadata": {},
390390
"outputs": [],
391391
"source": [
392-
"# Set some arbitrary attribute on a data variable/datarray\n",
392+
"# Set some arbitrary attribute on a data variable/data array\n",
393393
"ds.sst.attrs[\"my_custom_attribute\"] = \"Foo Bar\"\n",
394394
"ds.sst.attrs"
395395
]

0 commit comments

Comments
 (0)
0