I have the following row matrix which needs to be transposed:
[2.16764662 2.09886797]
So far, I have used np.transpose() and arr.T but for both I get
[2.16764662 2.09886797]
Instead of
[2.16764662
2.09886797]
Any idea what I am doing wrong?