Python Seaborn旋转x轴标签,但将标签与轴对齐

时间:2017-06-13 22:41:20

标签: python python-3.x matplotlib seaborn

我使用以下代码创建了Seaborn barplot

import seaborn as sns
barplot = sns.barplot(x='abc'
                      ,y='def'
                      ,data=df
                      ,ci=None
                      )
barplot.set_xticklabels(barplot.get_xticklabels(), rotation=45)    
barplot.figure

此代码生成barplot,如下所示: enter image description here

有没有办法旋转和对齐x轴标签,以便barplot看起来像这样?那么x轴标签的末端是否与x轴对齐?

enter image description here

我正在使用Python 3.6和seaborn 0.7.1

0 个答案:

没有答案