Browse Source

Numpy

pull/10/head
Jure Šorn 6 years ago
parent
commit
f20b2fc01f
1 changed files with 1 additions and 1 deletions
  1. 2
      README.md

2
README.md

@ -1684,7 +1684,7 @@ import numpy as np
```python
<el_or_array> = <array>[:,0] # First column.
<el_or_array> = <array>.sum([<axix>]) # Axis is an index of dimension that gets collapsed.
<el_or_array> = <array>.sum([<axis>]) # Axis is an index of dimension that gets collapsed.
<el_or_array> = <array>.argmin([<axis>]) # Returns index/es of smallest elements.
<el_or_array> = <array>[filter_expression]
```

Loading…
Cancel
Save