plt.plot(X_test.median_income, y_pred, color='green', linewidth=1) plt.xlabel('Median Income') #x轴:家庭收入中位数 plt.ylabel('Median House Value') #y轴:房价中位数 plt.show() #显示房价分布和机器学习到的函数模型