【问题标题】:Define custom seaborn color palette?定义自定义 seaborn 调色板?
【发布时间】:2019-04-07 20:15:21
【问题描述】:

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

使用 muted

使用 cubehelix

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

非常感谢任何帮助。

【问题讨论】:

标签: python matplotlib plot seaborn color-palette


【解决方案1】:

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()

【讨论】:

    猜你喜欢
    • 2020-04-28
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2020-09-28
    • 2021-01-08
    相关资源
    最近更新 更多