标签: python numpy
如何将y的格式从上面的格式转换为下面的格式?
答案 0 :(得分:2)
只需使用reshape:
reshape
>>> y = np.random.random((200,1)) >>> y.shape (200, 1) >>> y = y.reshape(200,) >>> y.shape (200,)
或flatten:
flatten
>>> y = y.flatten() >>> y.shape (200,)