- Seaborn 教程
- Seaborn - 首页
- Seaborn - 简介
- Seaborn - 环境设置
- 导入数据集和库
- Seaborn - 图表美学
- Seaborn - 颜色调色板
- Seaborn - 直方图
- Seaborn - 核密度估计
- 可视化成对关系
- Seaborn - 绘制分类数据
- 观测值的分布
- Seaborn - 统计估计
- Seaborn - 绘制宽格式数据
- 多面板分类图
- Seaborn - 线性关系
- Seaborn - Facet Grid
- Seaborn - Pair Grid
- 函数参考
- Seaborn - 函数参考
- Seaborn 有用资源
- Seaborn - 快速指南
- Seaborn - 有用资源
- Seaborn - 讨论
Seaborn.xkcd_palette() 方法
Seaborn.xkcd_palette() 方法用于根据 xkcd 颜色调查创建具有颜色名称的调色板。(要了解更多信息,请访问以下链接。)
此方法只是 seaborn.xkcd_rgb 字典的一个简单包装器。也就是说,它返回所有颜色列表作为 RGB 元组,这些元组的行为类似于其 seaborn 颜色调色板。
语法
以下是xkcd_palette() 方法的语法:
seaborn.xkcd_palette(colors)
参数
此方法的参数如下所述。
序号 | 参数和描述 |
---|---|
1 | 颜色 接受作为 seaborn.xkcd_rgb 字典中键的字符串列表。 |
返回值
xkcd_palette() 方法返回一个 Seaborn 颜色调色板。
示例 1
我们将需要传递一个字符串列表作为输入,这些字符串是颜色名称,然后颜色将作为调色板输出。这些字符串应该是 seaborn.xkcd_rgb 字典的一部分。
import seaborn as sns import matplotlib.pyplot as plt data = sns.xkcd_palette(["forest green","mauve","teal","indigo"]) sns.palplot(data) plt.show()
输出
输出如下:
示例 2
在这个例子中,我们将传递一些其他的颜色,并了解字典中不同的颜色。
import seaborn as sns import matplotlib.pyplot as plt data = sns.xkcd_palette(["lilac","mauve","pale pink","sage"]) sns.palplot(data) plt.show()
输出
输出如下:
示例 3
让我们来看另一个例子:
import seaborn as sns import matplotlib.pyplot as plt sns.xkcd_palette(["eggplant","mauve","steel blue","sage"]) sns.palplot(data) plt.show()
输出
输出如下:
seaborn_color_palettes_introduction.htm
广告