AttributeError:seaborn中的未知属性图例

时间:2016-06-30 18:48:27

标签: python pandas matplotlib legend seaborn

seaborn stripplot有一个允许hue的功能。

使用https://stanford.edu/~mwaskom/software/seaborn/generated/seaborn.stripplot.html

中的示例
import seaborn as sns
sns.set_style("whitegrid")
tips = sns.load_dataset("tips")
ax = sns.stripplot(x=tips["total_bill"])
ax = sns.stripplot(x="sex", y="total_bill", hue="day", data=tips, jitter=True)

enter image description here

在这种情况下,图例非常小,每天显示不同的色调。但是,我想删除传说。

通常,一个参数包含参数legend=False。但是,对于stripplot,这似乎会输出属性错误:

AttributeError: Unknown property legend

可以删除stripplots的图例吗?如果是这样,那怎么做呢?

1 个答案:

答案 0 :(得分:31)

像这里一样使用ax.legend_.remove()

import seaborn as sns
import matplotlib.pylab as plt
sns.set_style("whitegrid")
tips = sns.load_dataset("tips")
ax = sns.stripplot(x="sex", y="total_bill", hue="day", data=tips, jitter=True)

# remove legend from axis 'ax'
ax.legend_.remove()

plt.show()

enter image description here