Skip to content

Commit ca080c6

Browse files
committed
And update the key points to reflect the changes I've made
1 parent 30aa79f commit ca080c6

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

episodes/02-numpy.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ exercises: 10
88

99
- "Explain what a library is and what libraries are used for."
1010
- "Import a Python library and use the functions it contains."
11-
- "Select individual values and subsections from data."
11+
- "Select individual values from data."
1212
- "Perform operations on arrays of data."
1313

1414
::::::::::::::::::::::::::::::::::::::::::::::::::
@@ -384,12 +384,11 @@ Median Temperature: 3.9305999279022217
384384
:::::::::::::::::::::::::::::::::::::::::: keypoints
385385

386386
- "Import a library into a program using `import libraryname`."
387+
- "The `argopy` library can load Argo float data over the internet from the GDAC"
387388
- "Use the `numpy` library to work with arrays in Python."
388389
- "The expression `array.shape` gives the shape of an array."
389-
- "Use `array[x, y]` to select a single element from a 2D array."
390+
- "Use `array[x]` to select a single element from a 1D array."
390391
- "Array indices start at 0, not 1."
391-
- "Use `low:high` to specify a `slice` that includes the indices from `low` to `high-1`."
392392
- "Use `numpy.mean(array)`, `numpy.max(array)`, and `numpy.min(array)` to calculate simple statistics."
393-
- "The `argopy` library can load Argo float data over the internet from the GDAC"
394393

395394
::::::::::::::::::::::::::::::::::::::::::::::::::

0 commit comments

Comments
 (0)