gpt4 book ai didi

python - Seaborn light_palette 自定义长度

转载 作者:行者123 更新时间:2023-12-01 03:13:44 26 4
gpt4 key购买 nike

我正在尝试使用自定义长度的seaborn 制作一个顺序调色板。 Seaborn 提供了 light_palette 和 dark_palette ,它们看起来与我想要的非常相似,但我需要自定义的步骤长度。我还需要匹配seaborn的默认配色方案。

import seaborn as sns
sns.palplot(sns.light_palette(sns.color_palette()[0]))

<code>light_palette</code> of constant length

我尝试了几种解决方案:

尝试 1 - 使用 seaborn.cubehelix_palette,但我无法匹配 seaborn.color_palette() 提供的颜色

import seaborn as sns
sns.palplot(sns.cubehelix_palette(7,start=1,rot=0,dark=0.22,light=0.8))

Attempt 1 output

尝试 2 - 使用一半的 seaborn.diverging_palette,但我也无法使颜色匹配。默认配色方案输出蓝色,即 RGB(76,114,176) 或十六进制 (#4C72B0) 或 HSL (217° 40% 49%),但在输入这些参数时我得到了错误的颜色。

import seaborn as sns
sns.palplot(sns.diverging_palette(217.,217.,n=7,s=40,l=49))

Attempt 2 Bad Plot

最佳答案

您可以通过在调用调色板时指定此数字来获取具有 N 种颜色的调色板。

sns.palplot(sns.light_palette(sns.color_palette()[0],N))

enter image description here

关于python - Seaborn light_palette 自定义长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42661707/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com