I have an array x=[1,2,3,4,5] with shape print(x.shape) Output : (5,) I want to change it to (5,1) i.e 5 rows and 1 column
Примечание: x.reshape (-1,1) не работает