定义自定义 seaborn 调色板?

Define custom seaborn color palette?

我正在尝试构建一个调色板来消除大量堆叠条的歧义。当我使用任何离散调色板(例如 muted)时,颜色重复,当我使用任何连续颜色图(例如 cubehelix)时,颜色 运行 在一起。

使用muted

使用cubehelix

我需要一个包含大量不同的非连续 颜色的调色板。我认为这可以通过采用现有的连续调色板并排列颜色来实现,但是我不知道该怎么做,尽管进行了很多谷歌搜索,但仍无法弄清楚如何定义自定义调色板。

非常感谢任何帮助。

Matplotlib 提供了 tab20 颜色图,可能适合这里。

您也可以从现有颜色图中获取颜色并随机化它们的顺序。

两个可以获取 n 种不同颜色列表的工具是

比较这三个选项:

import numpy as np
import matplotlib.pyplot as plt
plt.rcParams["axes.xmargin"] = 0
plt.rcParams["axes.ymargin"] = 0

# Take the colors of an existing categorical map
colors1 = plt.cm.tab20.colors

# Take the randomized colors of a continuous map
inx = np.linspace(0,1,20)
np.random.shuffle(inx)
colors2 = plt.cm.nipy_spectral(inx)

# Take a list of custom colors
colors3 = ["#9d6d00", "#903ee0", "#11dc79", "#f568ff", "#419500", "#013fb0", 
          "#f2b64c", "#007ae4", "#ff905a", "#33d3e3", "#9e003a", "#019085", 
          "#950065", "#afc98f", "#ff9bfa", "#83221d", "#01668a", "#ff7c7c", 
          "#643561", "#75608a"]

fig = plt.figure()
x = np.arange(10)
y = np.random.rand(20, 10)+0.2
y /= y.sum(axis=0)

for i, colors in enumerate([colors1, colors2, colors3]):
    with plt.style.context({"axes.prop_cycle" : plt.cycler("color", colors)}):
        ax = fig.add_subplot(1,3,i+1)
        ax.stackplot(x,y)
plt.show()