标签: python machine-learning
我有一个维度数组(67233,)并需要将其转换为(67233,1)但不知道如何继续?任何人都可以为它推荐一个Python解决方案吗?
答案 0 :(得分:0)
使用reshape。 你可以这样做:arayvar.reshape(67233,1)
arayvar.reshape(67233,1)