Skip to content

Commit 81faa67

Browse files
committed
row(s), column(s)
1 parent 6db3374 commit 81faa67

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 (row), everything on the second (column)
576+
patient_0 = data[0, :] # 0 on the first axis (rows), everything on the second (columns)
577577
print('maximum inflammation for patient 0:', patient_0.max())
578578
~~~
579579
{: .python}

0 commit comments

Comments
 (0)