- Seaborn 教程
- Seaborn - 首页
- Seaborn - 简介
- Seaborn - 环境设置
- 导入数据集和库
- Seaborn - 图形美观
- Seaborn - 调色板
- Seaborn - 直方图
- Seaborn - 核密度估计
- 可视化成对关系
- Seaborn - 绘制分类数据
- 观测值的分布
- Seaborn - 统计估计
- Seaborn - 绘制宽格式数据
- 多面板分类图
- Seaborn - 线性关系
- Seaborn - Facet Grid
- Seaborn - Pair Grid
- 函数参考
- Seaborn - 函数参考
- Seaborn 有用资源
- Seaborn - 快速指南
- Seaborn - 有用资源
- Seaborn - 讨论
Seaborn.crayon_palette() 方法
Seaborn.crayon_palette() 方法用于创建使用彩虹蜡笔颜色名称的调色板。颜色取自彩虹蜡笔颜色的维基百科页面。
此方法是 seaborn.crayons 字典的简单包装器。也就是说,它将所有颜色列表作为 RGB 元组返回到一个类似于其他 seaborn 调色板的对象中。
语法
以下是 seaborn.crayon_palette() 方法的语法:
seaborn.crayon_palette(colors)
参数
此方法的参数如下:
序号 | 参数和描述 |
---|---|
1 | 颜色 接受 seaborn.crayons 字典中键的字符串列表。 |
返回值
此方法返回一个 Seaborn 调色板。
示例 1
我们将不得不传递一个字符串列表作为输入,这些字符串是颜色名称,然后颜色作为调色板作为输出生成。字符串应为 seaborn.crayon 字典的一部分。
import seaborn as sns import matplotlib.pyplot as plt data = sns.crayon_palette(["Sepia","Sunglow","Vivid Violet"]) sns.palplot(data) plt.show()
输出
输出如下:
示例 2
在此示例中,我们将传递一些其他颜色并了解字典中不同的颜色。
import seaborn as sns import matplotlib.pyplot as plt data = sns.crayon_palette(["Wild Watermelon","Wisteria","Wild Strawberry"]) sns.palplot(data) plt.show()
输出
输出如下:
示例 3
在此示例中,我们将传递一些其他颜色并了解字典中不同的颜色。我们必须将字典中键的名称作为参数传递。不能传递作为键值的十六进制值。
import seaborn as sns import matplotlib.pyplot as plt data = sns.crayon_palette(['Outer Space',"Purple Heart","Vivid Tangerine","Orchid","Raw Sienna"]) sns.palplot(data) plt.show()
输出
输出如下:
seaborn_color_palettes_introduction.htm
广告