机器学习之 x and y must be the same size

ValueError: x and y must be the same size

在使用matplotlib绘图时,使用参数报错X[:,1:]

plt.scatter(X[:,1:], y, c='r', marker='x')

修正:使用X[:,0:]

 

未完待续.......

你可能感兴趣的:(python)