标签:预测 print code imp 房价 color alt com key
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()
标签:预测 print code imp 房价 color alt com key
原文地址:https://www.cnblogs.com/ZHONGmy/p/10094889.html