Skip to content

Commit

Permalink
updating advanced indexing
Browse files Browse the repository at this point in the history
  • Loading branch information
negin513 committed Jun 6, 2024
1 parent 3300d69 commit 19c97f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions intermediate/indexing/advanced-indexing.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"\n",
"## Learning Objectives\n",
"\n",
"* Orthogonal vs. Vectorized and Pointwise Indexing"
"* Orthogonal vs. Pointwise Indexing"
]
},
{
Expand All @@ -17,7 +17,7 @@
"source": [
"## Overview\n",
"\n",
"In the previous notebooks, we learned basic forms of indexing with Xarray (positional and name based dimensions, integer and label based indexing), datetime Indexing, and nearest neighbor lookups. Xarray positional indexing deviates from the NumPy when indexing with multiple arrays like arr[[0, 1], [0, 1]]. In this tutorial we learn about this difference and how to do vectorized/pointwise indexing using Xarray.\n",
"In the previous notebooks, we learned basic forms of indexing with Xarray (positional and name based dimensions, integer and label based indexing), datetime Indexing, and nearest neighbor lookups. Xarray positional indexing deviates from the NumPy when indexing with multiple arrays like `arr[[0, 1], [0, 1]]`. In this tutorial we learn about this difference and how to do vectorized/pointwise indexing using Xarray.\n",
"\n",
"For this notebook, first, we should learn about orthogonal (i.e. outer) and vectorized (i.e. pointwise) indexing concepts. \n",
"\n",
Expand Down

0 comments on commit 19c97f4

Please sign in to comment.