删除Seaborn barplot图例标题

时间:2017-04-01 00:26:29

标签: python matplotlib bar-chart seaborn

我使用seaborn绘制分组条形图,如https://seaborn.pydata.org/examples/factorplot_bars.html

给我: https://seaborn.pydata.org/_images/factorplot_bars.png

传说中有一个标题(性别),我想删除。

我怎么能实现这个目标?

4 个答案:

答案 0 :(得分:9)

这可能是一个hacky解决方案,但它确实有效:如果你告诉Seaborn在绘图时将其关闭,然后将其添加回来,它就没有传说标题:

g = sns.factorplot(x='Age Group',y='ED',hue='Became Member',col='Coverage Type',
                   col_wrap=3,data=gdf,kind='bar',ci=None,legend=False,palette='muted')
#                                                         ^^^^^^^^^^^^
plt.suptitle('ED Visit Rate per 1,000 Members per Year',size=16)
plt.legend(loc='best')
plt.subplots_adjust(top=.925)
plt.show()

示例结果:

enter image description here

答案 1 :(得分:9)

一种不太常见的方法是使用matplotlib的面向对象的接口。通过获得轴的控制,可以更容易地定制绘图。

import seaborn as sns
import matplotlib.pyplot as plt
sns.set(style="whitegrid")

# Load the example Titanic dataset
titanic = sns.load_dataset("titanic")

# Draw a nested barplot to show survival for class and sex
fig, ax = plt.subplots()
g = sns.factorplot(x="class", y="survived", hue="sex", data=titanic,
                   size=6, kind="bar", palette="muted", ax=ax)
sns.despine(ax=ax, left=True)
ax.set_ylabel("survival probability")
l = ax.legend()
l.set_title('Whatever you want')
fig.show()

结果 resulting_plot

答案 2 :(得分:3)

您可以通过以下方式删除图例标题:

plt.gca().legend().set_title('')

答案 3 :(得分:0)

如果您希望图例显示在绘图轴之外,这是factorplot的默认值,您可以使用FacetGrid.add_legendfactorplot返回FacetGrid个实例) 。其他方法允许您一次调整FacetGrid中每个轴的标签

import seaborn as sns
import matplotlib.pyplot as plt
sns.set(style="whitegrid")

# Load the example Titanic dataset
titanic = sns.load_dataset("titanic")

# Draw a nested barplot to show survival for class and sex
g = sns.factorplot(x="class", y="survived", hue="sex", data=titanic,
                   size=6, kind="bar", palette="muted", legend=False)
(g.despine(left=True)
  .set_ylabels('survival probability')
  .add_legend(title='Whatever you want')
)