具有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”时无效