Advertisement

kaggle房价预测模型分析与总结

阅读量:

房价预测任务

依据房产特征信息,对各类住宅的最终市场价值进行预估。

在这里插入图片描述

(一):分析数据指标

  1. 首先需要对数据集中的特征变量与目标变量进行观察分析:
复制代码
    import pandas as pd
    import matplotlib.pyplot as plt
    import seaborn as sns
    import numpy as np
    from scipy.stats import norm
    from sklearn.preprocessing import StandardScaler
    from scipy import stats
    import warnings
    warnings.filterwarnings('ignore')
    %matplotlib inline
    
    
      
      
      
      
      
      
      
      
      
      
    
复制代码

全部评论 (0)

还没有任何评论哟~