回归模型与房价预测

Posted gzcc-11-28

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了回归模型与房价预测相关的知识,希望对你有一定的参考价值。

from sklearn.datasets import load_boston
boston=load_boston()
boston.keys()

技术分享图片

print(boston.DESCR)

技术分享图片

boston.data.shape

技术分享图片

import pandas as pd
pd.DataFrame(boston.data)

技术分享图片

boston.feature_names

技术分享图片

boston.target

技术分享图片

import pandas as pd
df=pd.DataFrame(boston.data)
df

技术分享图片

import matplotlib.pyplot as plt
x=boston.data[:,12].reshape(-1,1)
y=boston.target
plt.figure(figsize=(10,6))
plt.scatter(x,y)

from sklearn.linear_model import LinearRegression
lineR=LinearRegression()
lineR.fit(x,y)
y_pred=lineR.predict(x)
plt.plot(x,y_pred)
print(lineR.coef_,lineR.intercept_)#斜率截距
plt.show()

技术分享图片

技术分享图片

x_poly
from sklearn.preprocessing import PolynomialFeatures
poly=PolynomialFeatures(degree=2)
x_poly=poly.fit_transform(x)

lrp=LinearRegression()
lrp.fit(x_poly,y)
y_poly_pred=lrp.predict(x_poly)
plt.scatter(x,y)
plt.scatter(x,y_pred)
plt.scatter(x,y_poly_pred)
plt.show()

技术分享图片

技术分享图片

 

以上是关于回归模型与房价预测的主要内容,如果未能解决你的问题,请参考以下文章

回归模型与房价预测

回归模型与房价预测

回归模型与房价预测

回归模型与房价预测

回归模型与房价预测

回归模型与房价预测