回归模型与房价预测
Posted zhongmy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了回归模型与房价预测相关的知识,希望对你有一定的参考价值。
from sklearn.datasets import load_boston boston=load_boston() boston.keys() print(boston.DESCR) data=boston.data x=data[:,5] y=boston.target import matplotlib.pyplot as plt plt.scatter(x,y) plt.plot(x,9*x-30) plt.show()
以上是关于回归模型与房价预测的主要内容,如果未能解决你的问题,请参考以下文章