python出现ValueError: Expected 2D array, got 1D array instead相关的错误

具体报错为:

ValueError: Expected 2D array, got 1D array instead:Reshape your data either using array.reshape(-1, 1) if your data has a single feature or array.reshape(1, -1) if it contains a single sample.

这个错误怎么解决呢?

首先,找到报错的位置,在其下面一句程序中找到你的数组,假设你的数组为下面的x,

x = np.array([0, 1, 2])

当你对x操作的时候如果报这个错误的话,你就将数组x这么写:

y = x.reshape(1, -1)

 

你可能感兴趣的:(python)