expand_dims(a, axis)
Insert a new axis that will appear at the :None:None:`axis`
position in the expanded array shape.
Input array.
Position in the expanded axes where the new axis (or axes) is placed.
Passing an axis where axis > a.ndim
will be treated as axis == a.ndim
, and passing axis < -a.ndim - 1
will be treated as axis == 0
. This behavior is deprecated.
A tuple of axes is now supported. Out of range axes as described above are now forbidden and raise an :None:None:`AxisError`
.
Expand the shape of an array.
reshape
Insert, remove, and combine dimensions, and resize existing ones
squeeze
The inverse operation, removing singleton dimensions
>>> x = np.array([1, 2])
... x.shape (2,)
The following is equivalent to x[np.newaxis, :]
or x[np.newaxis]
:
>>> y = np.expand_dims(x, axis=0)
... y array([[1, 2]])
>>> y.shape (1, 2)
The following is equivalent to x[:, np.newaxis]
:
>>> y = np.expand_dims(x, axis=1)
... y array([[1], [2]])
>>> y.shape (2, 1)
axis
may also be a tuple:
>>> y = np.expand_dims(x, axis=(0, 1))
... y array([[[1, 2]]])
>>> y = np.expand_dims(x, axis=(2, 0))
... y array([[[1], [2]]])
Note that some examples may use None
instead of np.newaxis
. These are the same objects:
>>> np.newaxis is None TrueSee :
The following pages refer to to this document either explicitly or contain code examples using this.
numpy.squeeze
Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.
Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)
SVG is more flexible but power hungry; and does not scale well to 50 + nodes.
All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them