Catplot with kind = "boxen" производит коробки с белыми краями. Для пример :
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"