numpy一行转为一列

>>> a = np.array([1, 2, 3])
>>> a = a.reshape(-1, 1) #-1表示任意行数,1表示1>>> a
array([[1],
       [2],
       [3]])

你可能感兴趣的:(Python,numpy)