File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ def vstack(tup):
199
199
--------
200
200
stack : Join a sequence of arrays along a new axis.
201
201
hstack : Stack arrays in sequence horizontally (column wise).
202
- dstack : Stack arrays in sequence depthwise (along third dimension).
202
+ dstack : Stack arrays in sequence depth wise (along third dimension).
203
203
concatenate : Join a sequence of arrays along an existing axis.
204
204
vsplit : Split array into a list of multiple sub-arrays vertically.
205
205
@@ -250,7 +250,7 @@ def hstack(tup):
250
250
--------
251
251
stack : Join a sequence of arrays along a new axis.
252
252
vstack : Stack arrays in sequence vertically (row wise).
253
- dstack : Stack arrays in sequence depthwise (along third axis).
253
+ dstack : Stack arrays in sequence depth wise (along third axis).
254
254
concatenate : Join a sequence of arrays along an existing axis.
255
255
hsplit : Split array along second axis.
256
256
@@ -304,9 +304,6 @@ def stack(arrays, axis=0):
304
304
See Also
305
305
--------
306
306
concatenate : Join a sequence of arrays along an existing axis.
307
- vstack : Stack arrays vertically, along an existing row axis.
308
- hstack : Stack arrays horizontally, along an existing column axis.
309
- dstack : Stack arrays depthwise, along an existing third axis.
310
307
split : Split array into a list of multiple sub-arrays of equal size.
311
308
312
309
Examples
You can’t perform that action at this time.
0 commit comments