seaborn.blend_palette#

seaborn.blend_palette(colors, n_colors=6, as_cmap=False, input='rgb')#

创建一个在颜色列表之间混合的调色板。

参数:
colors颜色序列,以多种格式被 input 解释

十六进制代码、html 颜色名称或在 input 空间中的元组。

n_colorsint, 可选

调色板中的颜色数量。

as_cmapbool, 可选

如果为 True,则返回一个 matplotlib.colors.ListedColormap

返回值:
调色板

RGB 元组列表或 matplotlib.colors.ListedColormap

示例