避免 Seaborn 条形图颜色去饱和

Ant*_*nio 7 python plot matplotlib palette seaborn

我正在尝试使用几个不同的库(bokehseabornmatlotlib)在 Python 中绘制绘图,但保持相同的配色方案。我从 bokeh with: 中选择了分类调色板,
from bokeh.palettes import Category10 as palette
然后也在seaborn和中使用了它matplotlib。我的问题是,虽然matplotlib颜色看起来非常相似bokeh(如调色板中定义的),但seaborn显示出比应有的颜色明显更深的颜色(即饱和度较低或不饱和)。我想知道它是否默认对任何配色方案进行某种变暗,以及是否有任何方法可以避免这种情况。下面是使用不同库制作相同条形图的代码
使用bokeh

source = pd.DataFrame({'names': ['exp_1', 'exp_2'], 'data':[3, 5], 'color':palette[10][:2]})
p = bokeh.plotting.figure(x_range=['exp_1', 'exp_2'], y_range=(0,6), plot_height=500, title="test")
p.vbar(x='names', top='data', width=0.9,  legend_field="names", source=source, color='color')
p.xgrid.grid_line_color = None
p.legend.orientation = "horizontal"
p.legend.location = "top_center"
p.xaxis.major_label_text_font_size = '22pt'
p.yaxis.major_label_text_font_size = '22pt'
bokeh.io.show(p)
Run Code Online (Sandbox Code Playgroud)

使用matplotlib

# same palette both for seaborn and matplotlib (taken from bokeh palette)
sns_palette=sns.color_palette(palette[10]) 
fig, ax = plt.subplots()
plt.style.use('seaborn')
ax.set_xlabel('experiment', fontsize=20)
ax.tick_params(axis='both', which='major', labelsize=22)
ax.set_xticks([0, 1])
ax.set_xticklabels(['exp_1', 'exp_2'], fontsize=18)
ax.bar([0, 1], source['data'], align='center', color=sns_palette[:2])
Run Code Online (Sandbox Code Playgroud)

并使用bokeh

plt.figure()
ax = sns.barplot(x="names", y="data", data=source, palette=sns_palette[0:2])
ax.set_xlabel('experiment', fontsize=20)
ax.tick_params(axis='both', which='major', labelsize=18)
plt.tight_layout()
Run Code Online (Sandbox Code Playgroud)


散景条形图:
散景
matplotlib 条形图
绘图库
Seaborn 条形图:
西博恩

Ste*_*eer 7

默认情况下, Seaborn barplot将条形表面颜色的饱和度设置为 0.75。saturation=1这可以通过添加到 barplot 调用来覆盖。

import pandas as pd
from matplotlib import pyplot as plt
import seaborn as sns

source = pd.DataFrame({'names': ['exp_1', 'exp_2'], 'data':[3, 5]})
fig, ax = plt.subplots(1, 2)

# default saruration setting
sns.barplot(x="names", y="data", data=source, ax=ax[0])
ax[0].set_title('default saturation')

# additional parameter `saturation=1` passed to barplot
sns.barplot(x="names", y="data", data=source, saturation=1, ax=ax[1])
ax[1].set_title('saturation=1')
Run Code Online (Sandbox Code Playgroud)

(这个答案直接来自@JohanC 的评论,我只是将其提升为一个答案......很高兴所有权归该用户所有。)