Skip to content

Commit f20b2fc

Browse files
committed
Numpy
1 parent 418d6d2 commit f20b2fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1684,7 +1684,7 @@ import numpy as np
16841684

16851685
```python
16861686
<el_or_array> = <array>[:,0] # First column.
1687-
<el_or_array> = <array>.sum([<axix>]) # Axis is an index of dimension that gets collapsed.
1687+
<el_or_array> = <array>.sum([<axis>]) # Axis is an index of dimension that gets collapsed.
16881688
<el_or_array> = <array>.argmin([<axis>]) # Returns index/es of smallest elements.
16891689
<el_or_array> = <array>[filter_expression]
16901690
```

0 commit comments

Comments
 (0)