将seaborn catplot与kind =“ boxen”

时间:2018-08-25 06:40:07

标签: seaborn

具有kind =“ boxen”的猫图产生带有白色edgecolors的框。对于example

import seaborn as sns
import matplotlib.pyplot as plt
sns.set(style="darkgrid")
exercise = sns.load_dataset("exercise")
g = sns.catplot(x="time", y="pulse", hue="kind", data=exercise, kind="boxen")

有没有办法将框的边缘颜色更改为黑色?

我已经尝试使用

进行更改
plt.setp(g.ax.patches, linewidth=1, edgecolor="k")

当kind =“ box”时有效,而kind =“ boxen”时无效

0 个答案:

没有答案