python机器学习及实践(从零开始kaggle竞赛之路)第二章的2.1.2.1线性回归器程序报错Reshape your data either using array.reshape(-1, 1)

python机器学习及实践(从零开始kaggle竞赛之路)第二章的2.1.2.1线性回归器程序报错Reshape your data either using array.reshape(-1, 1)

1.首先我们查看一下y_train的数据维度:

python机器学习及实践(从零开始kaggle竞赛之路)第二章的2.1.2.1线性回归器程序报错Reshape your data either using array.reshape(-1, 1)_第1张图片

输出为:


2.根据报错提示需要reshape


可以通过:

python机器学习及实践(从零开始kaggle竞赛之路)第二章的2.1.2.1线性回归器程序报错Reshape your data either using array.reshape(-1, 1)_第2张图片

3.但是又warning:

DataConversionWarning: A column-vector y was passed when a 1d array was expected. Please change the shape of y to (n_samples, ), for example using ravel().

  y = column_or_1d(y, warn=True)

4.作为一个聪明的程序员warning通常是不管的,但是知道解决的大神麻烦评价下

你可能感兴趣的:(AI,ML)