以numpy转换数组的形状

时间:2018-11-09 21:37:35

标签: python numpy

enter image description here 如何将y的格式从上面的格式转换为下面的格式?

enter image description here

1 个答案:

答案 0 :(得分:2)

只需使用reshape

>>> y = np.random.random((200,1))
>>> y.shape
(200, 1)
>>> y = y.reshape(200,)
>>> y.shape
(200,)

flatten

>>> y = y.flatten()
>>> y.shape
(200,)