Tweaking seaborn.boxplot
问题 I would like to compare a set of distributions of scores ( score ), grouped by some categories ( centrality ) and colored by some other ( model ). I've tried the following with seaborn: plt.figure(figsize=(14,6)) seaborn.boxplot(x="centrality", y="score", hue="model", data=data, palette=seaborn.color_palette("husl", len(models) +1)) seaborn.despine(offset=10, trim=True) plt.savefig("/home/i11/staudt/Eval/properties-replication-test.pdf", bbox_inches="tight") There are some problems I have