回归分析
导入数据
1 | import pandas |
one-hot 处理
1 | #对Brick与Neighborhood两列数据进行one-hot处理 |
statsmodels.api
1 | #X为house的'SqFt', 'Bedrooms', 'Bathrooms', 'Offers', 'Yes', 'East', 'North'列 |
1 | import numpy.core.multiarray |
最优组合
1 | predictorcols = ['SqFt', 'Bedrooms', 'Bathrooms', 'Offers', 'Yes', 'East', 'North'] |
1 | import itertools#导入itertools库 |
1 | #导入collections的Counter |