We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68292d1 commit 4862dd6Copy full SHA for 4862dd6
README.md
@@ -1716,19 +1716,20 @@ import numpy as np
1716
<array> = np.random.randint(from_inclusive, to_exclusive, <shape>)
1717
```
1718
1719
-#### Shape is a tuple of dimension sizes.
1720
```python
1721
<array>.shape = <shape>
1722
<view> = <array>.reshape(<shape>)
1723
<view> = np.broadcast_to(<array>, <shape>)
1724
1725
1726
-#### Axis is an index of dimension, that gets collapsed.
1727
1728
<array> = <array>.sum(<axis>)
1729
<array> = <array>.argmin(<axis>)
1730
1731
+* **Shape is a tuple of dimension sizes.**
+* **Axis is an index of dimension, that gets collapsed.**
1732
+
1733
### Indexing
1734
#### Basic indexing:
1735
```bash
0 commit comments