相关疑难解决方法(0)

Seaborn 图表颜色与调色板指定的颜色不同

为什么 seaborn 图表颜色与调色板指定的颜色不同?

以下两个图表显示了条形图上显示的颜色与调色板图中显示的颜色之间的差异。如果您仔细观察,您会发现条形图上的颜色亮度/饱和度略低。

为什么这些不同,我怎样才能让条形图的颜色与调色板中指定的颜色完全相同?

import seaborn as sns
sns.set(style="white")
titanic = sns.load_dataset("titanic")

colors = ["windows blue", "amber", "greyish", "faded green", "dusty 
purple"]

ax = sns.countplot(x="class", data=titanic, 
palette=sns.xkcd_palette(colors))
sns.palplot(sns.xkcd_palette(colors))
Run Code Online (Sandbox Code Playgroud)

条形图
条形图

调色板图
调色板图

colors matplotlib palette seaborn

8
推荐指数
1
解决办法
1977
查看次数

标签 统计

colors ×1

matplotlib ×1

palette ×1

seaborn ×1