product_descriptor = ['product_type', 'product_gender', 'macro_function',
'function', 'sub_function', 'model', 'aesthetic_sub_line', 'macro_material',
'month']
product_target_sum = train.groupby(product_descriptor)['target'].sum().reset_index(name = 'sum_target')
product_target_count = train.groupby(product_descriptor)['target'].count().reset_index(name = 'count_target')
product_target_stats = pd.merge(product_target_sum,product_target_count,on=product_descriptor)
train = train.merge(product_target_stats,on=product_descriptor,how='left')
test = test.merge(product_target_stats,on=product_descriptor,how='left')
train['mean_target'] = (train['sum_target'] - train['target'])/(train['count_target']-1)
test['mean_target'] = test['sum_target']/test['count_target']
train.drop(['count_target','sum_target'],axis=1) #这块需要指定inplace 没指定相当于打印不改变DF
test.drop(['count_target','sum_target'],axis=1).head()
| ID | month | sku_hash | product_type | product_gender | macro_function | function | sub_function | model | aesthetic_sub_line | macro_material | color | fr_FR_price | en_US_description | mean_target |
---|
0 | ed4c7471eac7e8c6e6718364c2b6e75462eeb47c_1 | 1 | ed4c7471eac7e8c6e6718364c2b6e75462eeb47c | Accessories | Women | TEXTILES | SCARVES | WINTER SCARVES | ECHARPE REYKJAVIK | SANS LIGNE ESTHETIQUE | TEXTILE | NaN | 650.0 | In pure, soft cashmere, the Reykjavik scarf is... | 782.0 |
---|
1 | 26b2c4f6281482cccf1e748ef388f1649ecf1c8b_1 | 1 | 26b2c4f6281482cccf1e748ef388f1649ecf1c8b | Leather Goods | Women | CITY BAGS | DAILY BAGS | HANDBAGS | VERY ZIPPED TOTE | VERY | LEATHER | KAKI FANGO COQUILLE | 2550.0 | For Fall-Winter 2018, the Very Zipped Tote han... | 179.0 |
---|
2 | 00aad36ebc04aaa761df219c1b48d1e6162d28bb_1 | 1 | 00aad36ebc04aaa761df219c1b48d1e6162d28bb | Leather Goods | Women | CITY BAGS | DAILY BAGS | CROSS SHOULDER BAGS | HINA | MAHINA | LEATHER | NOIR | 2460.0 | The Hina is two bags in one: gather in the sid... | NaN |
---|
3 | 8281636e7d162c92c1a3c1f9e40afb05d39a02f9_1 | 1 | 8281636e7d162c92c1a3c1f9e40afb05d39a02f9 | Accessories | Men | TEXTILES | STOLES | WINTER STOLES | ETOLE MONOGRAM NIGHTFALL | SANS LIGNE ESTHETIQUE | TEXTILE | NaN | 455.0 | With its subtle tone-on-tone Monogram pattern ... | NaN |
---|
4 | b76f8505700409a198fe69fb33e5d6cc01166c9b_1 | 1 | b76f8505700409a198fe69fb33e5d6cc01166c9b | Accessories | Men | TIES | TIES | OTHER TIES | CRAVATE MONOGRAM ILLUSION | SANS LIGNE ESTHETIQUE | TEXTILE | NaN | 150.0 | Suitable both for business and special occasio... | NaN |
---|
train.head()
| ID | month | sku_hash | product_type | product_gender | macro_function | function | sub_function | model | aesthetic_sub_line | macro_material | color | fr_FR_price | en_US_description | target | sum_target | count_target | mean_target |
---|
0 | 3d8a4ae769b526187c36901f204691a663333fa4_1 | 1 | 3d8a4ae769b526187c36901f204691a663333fa4 | Leather Goods | Women | LG ACCESSORIES | SMALL LEATHER GOODS | COMPACT WALLETS | PF.VICTORINE | DAMIER AZUR | CANVAS | AZUR | 370.0 | Fashioned from summery Damier Azur canvas, thi... | 1366.0 | 1837.0 | 2 | 471.000000 |
---|
1 | c05a54f7067be054ec4b27d0d6081353ef7d9df6_1 | 1 | c05a54f7067be054ec4b27d0d6081353ef7d9df6 | Accessories | Women | FANCY ACCESSORIES | BAG CHARMS | BAG CHARMS | BAG CHARM PETITE MALLE | SANS LIGNE ESTHETIQUE | CANVAS | NaN | 295.0 | This collectible piece features our iconic Pet... | 526.0 | 526.0 | 1 | NaN |
---|
2 | 7cb4d3626bd48a9b523d8693266219c34aeccde8_1 | 1 | 7cb4d3626bd48a9b523d8693266219c34aeccde8 | Leather Goods | Women | CITY BAGS | DAILY BAGS | SHOULDER BAGS | GIROLATA | MAHINA | LEATHER | GALET | 2660.0 | The perfect summer companion, this effortlessl... | 503.0 | 1395.0 | 4 | 297.333333 |
---|
3 | 8e5967f90ff9fb93aa2840fceecc537b2e8e6ff3_1 | 1 | 8e5967f90ff9fb93aa2840fceecc537b2e8e6ff3 | Leather Goods | Women | CITY BAGS | DAILY BAGS | SHOULDER BAGS | GIROLATA | MAHINA | LEATHER | MAGNOLIA | 2660.0 | The perfect summer companion, this effortlessl... | 276.0 | 1395.0 | 4 | 373.000000 |
---|
4 | 6913a128945e0efeafc52101dcdeaa610eaa4430_1 | 1 | 6913a128945e0efeafc52101dcdeaa610eaa4430 | Accessories | Men | FASHION JEWELRY | NECKLACES | NECKLACES | COLL.CHARMS FOR GENTLEMEN | SANS LIGNE ESTHETIQUE | NON PRECIOUS METAL | NaN | 325.0 | This distinctive charm necklace reinterprets d... | 206.0 | 206.0 | 1 | NaN |
---|
train.drop(['count_target','sum_target'],axis=1,inplace =True)
test.drop(['count_target','sum_target'],axis=1,inplace =True)
train.head()
| ID | month | sku_hash | product_type | product_gender | macro_function | function | sub_function | model | aesthetic_sub_line | macro_material | color | fr_FR_price | en_US_description | target | mean_target |
---|
0 | 3d8a4ae769b526187c36901f204691a663333fa4_1 | 1 | 3d8a4ae769b526187c36901f204691a663333fa4 | Leather Goods | Women | LG ACCESSORIES | SMALL LEATHER GOODS | COMPACT WALLETS | PF.VICTORINE | DAMIER AZUR | CANVAS | AZUR | 370.0 | Fashioned from summery Damier Azur canvas, thi... | 1366.0 | 471.000000 |
---|
1 | c05a54f7067be054ec4b27d0d6081353ef7d9df6_1 | 1 | c05a54f7067be054ec4b27d0d6081353ef7d9df6 | Accessories | Women | FANCY ACCESSORIES | BAG CHARMS | BAG CHARMS | BAG CHARM PETITE MALLE | SANS LIGNE ESTHETIQUE | CANVAS | NaN | 295.0 | This collectible piece features our iconic Pet... | 526.0 | NaN |
---|
2 | 7cb4d3626bd48a9b523d8693266219c34aeccde8_1 | 1 | 7cb4d3626bd48a9b523d8693266219c34aeccde8 | Leather Goods | Women | CITY BAGS | DAILY BAGS | SHOULDER BAGS | GIROLATA | MAHINA | LEATHER | GALET | 2660.0 | The perfect summer companion, this effortlessl... | 503.0 | 297.333333 |
---|
3 | 8e5967f90ff9fb93aa2840fceecc537b2e8e6ff3_1 | 1 | 8e5967f90ff9fb93aa2840fceecc537b2e8e6ff3 | Leather Goods | Women | CITY BAGS | DAILY BAGS | SHOULDER BAGS | GIROLATA | MAHINA | LEATHER | MAGNOLIA | 2660.0 | The perfect summer companion, this effortlessl... | 276.0 | 373.000000 |
---|
4 | 6913a128945e0efeafc52101dcdeaa610eaa4430_1 | 1 | 6913a128945e0efeafc52101dcdeaa610eaa4430 | Accessories | Men | FASHION JEWELRY | NECKLACES | NECKLACES | COLL.CHARMS FOR GENTLEMEN | SANS LIGNE ESTHETIQUE | NON PRECIOUS METAL | NaN | 325.0 | This distinctive charm necklace reinterprets d... | 206.0 | NaN |
---|