Seaborn 箱形图 X 轴太拥挤

Seaborn Box Plot X-Axis Too Crowded

美好的一天,

参考附图。我创建的 Seaborn 条形图上的 x 轴有重叠的文本并且太拥挤了。我该如何解决这个问题?

数据源在 Kaggle 上,我正在关注这篇文章:https://towardsdatascience.com/a-quick-guide-on-descriptive-statistics-using-pandas-and-seaborn-2aadc7395f32

这是我使用的代码:

 sns.set(style = 'darkgrid')
 plt.figure(figsize = (20, 10))
 ax = sns.countplot(x = 'Regionname', data = df)

Seaborn X-axis too crowded

如有任何帮助,我将不胜感激。

谢谢!

您没有使用在上一行中设置的图形大小。尝试

fig, ax = plt.subplots(figsize=(20, 10))  # generate a figure and return figure and axis handle

sns.countplot(x='Regionname', data=df, ax=ax)  # passing the `ax` to seaborn so it knows about it

这之后的另一件事可能是旋转标签:

ax.set_xticklabels(ax.get_xticklabels(), rotation=60)