diff --git a/README.md b/README.md index 9501e61..b7c3131 100644 --- a/README.md +++ b/README.md @@ -1676,16 +1676,16 @@ import numpy as np = np.random.randint(from_inclusive, to_exclusive, ) ``` -```python -first_column = [:, 0] # Or: [..., 0] -value = .min([axis]) -index = .argmin([axis]) -``` - ```python .shape = = .reshape() = np.broadcast_to(, ) +``` + +```python + = [:,0] # First column. + = .sum([]) # Axis is an index of dimension that gets collapsed. + = .argmin([]) # Returns index/es of smallest elements. = [filter_expression] ```