线性回归 预测Boston房价

1.导入sklearn数据库

代码: from sklearn.datasets import load_boston
            from sklearn.model_selection import train_test_split
            from sklearn.preprocessing import StandardScaler 
            from sklearn.linear_model import LinearRegression
            from sklearn.metrics import mean_squared_error
            import pandas as pd
            import numpy as np

 2.导入数据库里面的数据

线性回归 预测Boston房价_第1张图片

线性回归 预测Boston房价_第2张图片

4. 数据分析线性回归 预测Boston房价_第3张图片

5.输出结果

线性回归 预测Boston房价_第4张图片 线性回归 预测Boston房价_第5张图片

学号: 202113430121    姓名:周金枝

 

你可能感兴趣的:(Anaconda,python,人工智能)