I wonder what is the meaning of .T
in the function np.vstack(array1, array2, array3).T
?
Asked
Active
Viewed 1,972 times
1

Karl Knechtel
- 62,466
- 11
- 102
- 153

гиви
- 79
- 7
-
That `T` is outside it seems. This means vstack the arrays and then transpose the result. – NNN Mar 04 '21 at 09:38
2 Answers
-3
.T implies transpose of the stacked arrays.

Justicecode
- 1
- 1
-
2Please be sure to check other existing answers to avoid giving the exact same answer again. – ouflak Jan 20 '22 at 10:44