Skip to content

Commit df689c7

Browse files
committed
reinforce row,column ordering
1 parent 08adbaa commit df689c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_episodes/01-numpy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ One way to do this is to create a new temporary array of the data we want,
573573
then ask it to do the calculation:
574574
575575
~~~
576-
patient_0 = data[0, :] # 0 on the first axis, everything on the second
576+
patient_0 = data[0, :] # 0 on the first axis (row), everything on the second (column)
577577
print('maximum inflammation for patient 0:', patient_0.max())
578578
~~~
579579
{: .python}

0 commit comments

Comments
 (0)