问题

seaborn.barplot()绘图结果中,横坐标轴的标签太长导致挤在一起,不适合放在论文里。

原先的代码:

plt.figure(figsize = [20,10],dpi=100)
sns.barplot(x = feature_importance.iloc[:10]['fea_name'],y = feature_importance.iloc[:10]['fea_imp'])

绘图结果:

 

方法1

刚开始查了很长时间matplotlib的set_xticklabels()怎么用,没有一篇能讲清楚的!!!后来想到seaborn是基于matplotlib的,那么在seaborn里应该也是可以调用set_xticklabels()的。

更改后的代码:

plt.figure(figsize = [20,10],dpi=100)
ax = sns.barplot(x = feature_importance.iloc[:10]['fea_name'],y = feature_importance.iloc[:10]['fea_imp'])
ax.set_xticklabels(labels = ['file_id_tid_mean','api_LdrGetProcedureAddress','file_id_tid_max','file_id_tid_std','file_id_tid_min','api_LdrGetDllHandle','file_id_api_count','file_id_api_nunique','file_id_index_nunique','api_NtClose'],
                                    rotation = 45,fontsize = 15) # 放大横轴坐标并逆时针旋转45°
ax.set_yticklabels(labels = [0,500,1000,1500,2000,2500,3000,3500],fontsize = 15) # 放大纵轴坐标
plt.xlabel('fea_name',fontsize=18) # 放大横轴名称
plt.ylabel('fea_imp',fontsize=18) # 放大纵轴名称

绘图结果:

方法2

在绘图代码后加一行代码:

plt.tight_layout()

这行代码可以自动调整横轴布局,但是不适合我的图。

 

参考文章:python matplotlib画盒图、子图解决坐标轴标签重叠的问题

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐