为seaborn.boxplot中的特定框指定颜色

时间:2016-03-30 10:09:01

标签: matplotlib plot seaborn

我大致如下调用seaborn.boxplot:

   seaborn.boxplot(ax=ax1,
                    x="centrality", y="score", hue="model", data=data], 
                    palette=seaborn.color_palette("husl", len(models) +1),
                    showfliers=False, 
                    hue_order=order,
                    linewidth=1.5)

是否可以通过赋予特定颜色使一个盒子脱颖而出,同时用给定的调色板着色所有其他盒子?

enter image description here

1 个答案:

答案 0 :(得分:16)

使用sns.boxplot制作的框实际上只是matplotlib.patches.PathPatch个对象。它们作为列表存储在ax.artists中。

因此,我们可以通过索引ax.artists来特别选择一个框。然后,您可以在许多其他属性中设置facecoloredgecolorlinewidth

例如(基于其中一个示例here):

import seaborn as sns
import matplotlib.pyplot as plt

sns.set_style("whitegrid")
tips = sns.load_dataset("tips")
ax = sns.boxplot(x="day", y="total_bill", hue="smoker",
                 data=tips, palette="Set3")

# Select which box you want to change    
mybox = ax.artists[2]

# Change the appearance of that box
mybox.set_facecolor('red')
mybox.set_edgecolor('black')
mybox.set_linewidth(3)

plt.show()

enter image description here