From 4862dd6e29b45f6c2071569fbeb84720a7742eaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 29 Jan 2019 20:07:33 +0100 Subject: [PATCH] Numpy --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f0d45c8..8f44cf4 100644 --- a/README.md +++ b/README.md @@ -1716,19 +1716,20 @@ import numpy as np = np.random.randint(from_inclusive, to_exclusive, ) ``` -#### Shape is a tuple of dimension sizes. ```python .shape = = .reshape() = np.broadcast_to(, ) ``` -#### Axis is an index of dimension, that gets collapsed. ```python = .sum() = .argmin() ``` +* **Shape is a tuple of dimension sizes.** +* **Axis is an index of dimension, that gets collapsed.** + ### Indexing #### Basic indexing: ```bash