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)
在这种情况下,图例非常小,每天显示不同的色调。但是,我想删除传说。
通常,一个包含参数legend=False
。但是,对于stripplot
,这似乎输出属性错误:
AttributeError: Unknown property legend
可以删除stripplots
的传奇吗?如果是这样,那怎么做呢?