python 对plot_importance的字段名称进行重命名

如果不进行重命名的话,显示的importance信息无法有效的看清各个属性的重要性

python 对plot_importance的字段名称进行重命名_第1张图片

所以我想把我字段名字重命名为

x = ['apn',  'city_id',  'mode',  'phone_price',
     'city_level',  'item_type', 'item_id','category_id',
    'imgs_count','source_id','status', 'admin_id','author_type','rss_id',
    'is_in_whitelist',  'publish_type', ]

调用set_feature_name方法进行应用命名:

train.set_feature_name(x)  #train为我的训练数据

结果显示:

python 对plot_importance的字段名称进行重命名_第2张图片

 

第二种方法:用rename方式:

python 对plot_importance的字段名称进行重命名_第3张图片

 

 

你可能感兴趣的:(python 对plot_importance的字段名称进行重命名)