MSE、RMSE、MAE
1/m 是为了使衡量结果与样本数量无关
使用简单线性回归法
1、使用波士顿数据集
In [474]: from sklearn import datasets
In [476]: boston = datasets.load_boston()
#取出第五个属性,即只使用房间数量这个特征
x=boston.data[:,5]
In [482]: y = boston.target
#去除异常样本数据
In [484]: np.max(y)
Out[484]: 50.0
In [485]: x = x[y<50.0]
In [486]: y = y[y<50.0]
2、进行简单线性回归
#划分数据集
In [491]: from sklearn