index_col : int or sequence or False, default None
train_df = pd.read_csv('./input/train.csv')
print train_df.columns
结果:
Index([u'Id', u'MSSubClass', u'MSZoning', u'LotFrontage', u'LotArea',
u'Street', u'Alley', u'LotShape', u'LandContour', u'Utilities',
u'LotConfig', u'LandSlope', u'Neighborhood', u'Condition1',
u'Condition2', u'BldgType', u'HouseStyle', u'OverallQual',
u'OverallCond', u'YearBuilt', u'YearRemodAdd', u'RoofStyle',
u'RoofMatl', u'Exterior1st', u'Exterior2nd', u'MasVnrType',。。。]
train_df = pd.read_csv('./input/train.csv', index_col=0)
结果:
Index([u'MSSubClass', u'MSZoning', u'LotFrontage', u'LotArea', u'Street',
u'Alley', u'LotShape', u'LandContour', u'Utilities', u'LotConfig',
u'LandSlope', u'Neighborhood', u'Condition1', u'Condition2',
u'BldgType', u'HouseStyle', u'OverallQual', u'OverallCond',
u'YearBuilt', u'YearRemodAdd', u'RoofStyle', u'RoofMatl',
u'Exterior1st', u'Exterior2nd', u'MasVnrType',。。。]