Exploratory Data Analysis (Example 1)
concatenate train and test into one dataframe and do all feature engineering using it.
traintest = pd.concat([train, test], axis = 0)
Dataset cleaning
Remove constant features
如果某一特征的值时一样的,就没有意义。
. n...
原创
2019-07-15 16:01:45 ·
374 阅读 ·
0 评论