按照Seaborn API站点上的示例,我似乎无法显示edgecolor
这是我用的
import seaborn as sns
sns.set_style("whitegrid")
tips = sns.load_dataset("tips")
ax = sns.boxplot(x="day", y="total_bill", data=tips)
ax = sns.stripplot(x="day", y="total_bill", data=tips, size=4, jitter=True, edgecolor="gray")
但这就是他们的阴谋我错过了什么吗?我正在使用Seaborn .6和Matplotlib 1.4.3与Python 3
1条答案
按热度按时间xeufq47z1#
linewidth
添加到seaborn.stripplot
,以显示边缘颜色(ec
)。lw
不会导致错误,但如果lw
用于linewidth
,则不会显示edgecolor。*在
python 3.8.11
、pandas 1.3.3
、matplotlib 3.4.3
、seaborn 0.11.2
中测试