我使用以下代码创建了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
有没有办法旋转和对齐x轴标签,以便barplot
看起来像这样?那么x轴标签的末端是否与x轴对齐?
我正在使用Python 3.6和seaborn 0.7.1