Skip to content

Commit

Permalink
fix typo in Intro to ND array: col -> row
Browse files Browse the repository at this point in the history
  • Loading branch information
rsokl committed Jan 5, 2020
1 parent 9d4d9df commit 2a81ef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Python/Module3_IntroducingNumpy/IntroducingTheNDarray.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ array([[ 0, 1, 4],
[36, 49, 64]], dtype=int32)
```

Let's take the mean value over the three distinct columns in our data:
Let's take the mean value along the three distinct rows of our data:
```python
>>> np.mean(x, axis=1)
array([ 1., 4., 7.])
Expand Down

0 comments on commit 2a81ef9

Please sign in to comment.