# 控制图像的美学样式(aesthetics)
> 译者:[P3n9W31](https://github.com/P3n9W31)
绘制有吸引力的图像很十分重要的。当你在探索一个数据集并为你自己做图的时候,制作一些让人看了心情愉悦的图像是很好的。可视化对向观众传达量化的简介也是很重要的,在这种情况下制作能够抓住查看者的注意力并牢牢吸引住他们的图像就更有必要了。
Matplotlib 是高度可定制的,但是很难知道要如何设置图像才能使得图像更加吸引人。Seaborn 提供了许多定制好的主题和高级的接口,用于控制 Matplotlib 所做图像的外观。
```py
import numpy as np
import seaborn as sns
import matplotlib.pyplot as plt
```
让我们定义一个简单的函数来绘制一些偏移正弦波,这将帮助我们看到我们可以调整的能够影响图像风格的不同参数。
```py
def sinplot(flip=1):
x = np.linspace(0, 14, 100)
for i in range(1, 7):
plt.plot(x, np.sin(x + i * .5) * (7 - i) * flip)
```
这是 Matplotlib 默认情况下的绘图外观:
```py
sinplot()
```
![http://seaborn.pydata.org/_images/aesthetics_7_0.png](https://img.kancloud.cn/9f/28/9f289d7092af6ca8912abde59db59c66_374x252.jpg)
为了将图像的风格转变为 seaborn 的默认样式,我们可以 [`set()`](../generated/seaborn.set.html#seaborn.set "seaborn.set") 函数。
```py
sns.set()
sinplot()
```
![http://seaborn.pydata.org/_images/aesthetics_9_0.png](https://img.kancloud.cn/65/86/65864dc131a80323961f5e04453c1c23_377x257.jpg)
(注意,在 0.8 之前的 seaborn 版本中, [`set()`](../generated/seaborn.set.html#seaborn.set "seaborn.set") 已经在使用 impory 语句导入的时候就被调用了。但在以后的版本中,必须要显式调用它)。
Seaborn 将 matplotlib 参数分成两个独立的组。第一组设置了图像的美术风格,第二组则对图像中不同的元素进行了控制,使得图像可以很容易地融入不同的环境中。
操作这些参数的接口是两对函数。要控制样式,请使用 [`axes_style()`](../generated/seaborn.axes_style.html#seaborn.axes_style "seaborn.axes_style") 和 [`set_style()`](../generated/seaborn.set_style.html#seaborn.set_style "seaborn.set_style") 函数。要对图像中元素的样式进行修改,请使用 [`plotting_context()`](../generated/seaborn.plotting_context.html#seaborn.plotting_context "seaborn.plotting_context") 和 [`set_context()`](../generated/seaborn.set_context.html#seaborn.set_context "seaborn.set_context") 函数。在这两种情况下(控制图像样式与修改元素样式),第一个函数会返回一个参数字典,第二个函数设置 matplotlib 中相关参数的默认值。
## Seaborn 图像参数
有五个预设的 Seaborn 主题: `darkgrid`,`whitegrid`,`dark`,`white`以及 `ticks`。它们分别适用于不同的应用程序和个人偏好。默认主题为 `darkgrid`。如上所述,坐标方格有助于将制出的图像用作定量信息的查阅表,灰色背景上的白色有助于防止网格与表示数据的行发生竞争。 `whitegrid` 主题类似,但它更适用于包含大量数据元素的绘图:
```py
sns.set_style("whitegrid")
data = np.random.normal(size=(20, 6)) + np.arange(6) / 2
sns.boxplot(data=data);
```
![http://seaborn.pydata.org/_images/aesthetics_11_0.png](https://img.kancloud.cn/4d/de/4dde184b291515b14f0fbe3ed39ddb27_377x257.jpg)
对许多的图像而言,(尤其是在你只是想通过图像来提供给人们一个对数据模式的印象时,比如说作报告时)坐标网格都是不必要的。
```py
sns.set_style("dark")
sinplot()
```
![http://seaborn.pydata.org/_images/aesthetics_13_0.png](https://img.kancloud.cn/ea/57/ea57ebd89700966283fdd8e1edc39d10_377x257.jpg)
```py
sns.set_style("white")
sinplot()
```
![http://seaborn.pydata.org/_images/aesthetics_14_0.png](https://img.kancloud.cn/22/46/22469d18de08bd8f8c18c9cb528320d9_377x257.jpg)
有时,您可能希望为绘图提供一点额外的结构,这正是 tick 样式的用武之地:
```py
sns.set_style("ticks")
sinplot()
```
![http://seaborn.pydata.org/_images/aesthetics_16_0.png](https://img.kancloud.cn/42/2a/422a48cf5737dfc3ea95058f16bf0562_377x257.jpg)
## 移除坐标轴
`white` 样式与 `ticks` 样式的好处是都能删除所不需要的顶部与右部坐标轴。使用 seaborn 中的函数 [`despine()`](../generated/seaborn.despine.html#seaborn.despine "seaborn.despine") 可以来移除它们:
```py
sinplot()
sns.despine()
```
![http://seaborn.pydata.org/_images/aesthetics_18_0.png](https://img.kancloud.cn/26/b4/26b4733dcd2cfcc003c467280fcb48bd_377x257.jpg)
有些图的好处在于,可以让坐标的主轴随着数据进行偏移,这可以使用 [`despine()`](../generated/seaborn.despine.html#seaborn.despine "seaborn.despine")函数来完成。当刻度无法覆盖轴的整个范围时,`trim`参数将限制不受影响的坐标轴的范围。
```py
f, ax = plt.subplots()
sns.violinplot(data=data)
sns.despine(offset=10, trim=True);
```
![http://seaborn.pydata.org/_images/aesthetics_20_0.png](https://img.kancloud.cn/db/21/db2167a5643a630d93976c4d1883741d_387x267.jpg)
你也可以通过控制 [`despine()`](../generated/seaborn.despine.html#seaborn.despine "seaborn.despine")的额外参数来删除坐标轴:
```py
sns.set_style("whitegrid")
sns.boxplot(data=data, palette="deep")
sns.despine(left=True)
```
![http://seaborn.pydata.org/_images/aesthetics_22_0.png](https://img.kancloud.cn/ff/b8/ffb8b22eb2b4201321da44a448a1a1a8_377x257.jpg)
## 设置临时图像格式
虽然来回切换很容易,但你也可以在`with`语句中使用 [`axes_style()`](../generated/seaborn.axes_style.html#seaborn.axes_style "seaborn.axes_style") 函数来临时设置绘图参数。 这也允许您使用不同风格的坐标轴制作图形:
```py
f = plt.figure()
with sns.axes_style("darkgrid"):
ax = f.add_subplot(1, 2, 1)
sinplot()
ax = f.add_subplot(1, 2, 2)
sinplot(-1)
```
![http://seaborn.pydata.org/_images/aesthetics_24_0.png](https://img.kancloud.cn/f7/34/f7342275aaf89d106ef48ce2e9133a3d_377x257.jpg)
## 覆盖控制 seaborn 样式的元素
如果你想要自己定制 seaborn 的样式,你可以通过给 [`axes_style()`](../generated/seaborn.axes_style.html#seaborn.axes_style "seaborn.axes_style") 与[`set_style()`](../generated/seaborn.set_style.html#seaborn.set_style "seaborn.set_style")函数中的 `rc` 参数传递一个参数字典来实现。请注意,您只能通过此方法覆盖作为样式定义一部分的参数。(但是,更高级别的 [`set()`](../generated/seaborn.set.html#seaborn.set "seaborn.set") 函数会获取任何 matplotlib 参数的字典)。
如果你想看看包含哪些参数,你可以只调用没有参数的函数,这将返回当前设置:
```py
sns.axes_style()
```
```py
{'axes.axisbelow': True,
'axes.edgecolor': '.8',
'axes.facecolor': 'white',
'axes.grid': True,
'axes.labelcolor': '.15',
'axes.spines.bottom': True,
'axes.spines.left': True,
'axes.spines.right': True,
'axes.spines.top': True,
'figure.facecolor': 'white',
'font.family': ['sans-serif'],
'font.sans-serif': ['Arial',
'DejaVu Sans',
'Liberation Sans',
'Bitstream Vera Sans',
'sans-serif'],
'grid.color': '.8',
'grid.linestyle': '-',
'image.cmap': 'rocket',
'lines.solid_capstyle': 'round',
'patch.edgecolor': 'w',
'patch.force_edgecolor': True,
'text.color': '.15',
'xtick.bottom': False,
'xtick.color': '.15',
'xtick.direction': 'out',
'xtick.top': False,
'ytick.color': '.15',
'ytick.direction': 'out',
'ytick.left': False,
'ytick.right': False}
```
然后,您可以设置这些参数的不同版本:
```py
sns.set_style("darkgrid", {"axes.facecolor": ".9"})
sinplot()
```
![http://seaborn.pydata.org/_images/aesthetics_28_0.png](https://img.kancloud.cn/3c/32/3c32a9dffcc47de969dca37df8c2320a_377x257.jpg)
## 缩放图像元素
一组独立的参数控制绘图元素的比例,这允许您使用相同的代码来制作在适合使用不同大小图片场景下的图片。
首先,让我们通过调用 [`set()`](../generated/seaborn.set.html#seaborn.set "seaborn.set")来重置默认的参数:
```py
sns.set()
```
按照相对大小的顺序排序,四个预设环境是 `paper`, `notebook`, `talk`与 `poster`。 `notebook`样式是默认样式,上文中的图就是使用该样式绘制的。
```py
sns.set_context("paper")
sinplot()
```
![http://seaborn.pydata.org/_images/aesthetics_32_0.png](https://img.kancloud.cn/3b/97/3b970a9410e1148d8639c7e42a0a6b9b_372x253.jpg)
```py
sns.set_context("talk")
sinplot()
```
![http://seaborn.pydata.org/_images/aesthetics_33_0.png](https://img.kancloud.cn/c2/c4/c2c4a07b13630f225da5e961ff9f3549_403x268.jpg)
```py
sns.set_context("poster")
sinplot()
```
![http://seaborn.pydata.org/_images/aesthetics_34_0.png](https://img.kancloud.cn/7f/18/7f18a7dec6c9b0ff272884110b4c9ee5_401x279.jpg)
您现在知道的关于样式函数的大部分内容应该转移到环境函数中。
你可以通过在调用 [`set_context()`](../generated/seaborn.set_context.html#seaborn.set_context "seaborn.set_context") 时指定环境的名字来设置参数,你也可以通过提供一个参数字典来覆盖原有的参数值。
你也在转换环境的时候独立地对字符元素的大小进行缩放。(这个操作也能够顶层的 [`set()`](../generated/seaborn.set.html#seaborn.set "seaborn.set") 函数来实现)。
```py
sns.set_context("notebook", font_scale=1.5, rc={"lines.linewidth": 2.5})
sinplot()
```
![http://seaborn.pydata.org/_images/aesthetics_36_0.png](https://img.kancloud.cn/fc/67/fc67802fdc9c05215df388b72c2ceac8_397x262.jpg)
同样的,你也可以暂时的通过嵌套在 `with` 语句下的语句来实现图像的缩放。
样式和环境都可以使用 [`set()`](../generated/seaborn.set.html#seaborn.set "seaborn.set") 函数快速配置。 此函数还设置默认调色板,但更详细的介绍将在本教程的 [下一节](color_palettes.html#palette-tutorial) 进行叙述。
- seaborn 0.9 中文文档
- Seaborn 简介
- 安装和入门
- 可视化统计关系
- 可视化分类数据
- 可视化数据集的分布
- 线性关系可视化
- 构建结构化多图网格
- 控制图像的美学样式
- 选择调色板
- seaborn.relplot
- seaborn.scatterplot
- seaborn.lineplot
- seaborn.catplot
- seaborn.stripplot
- seaborn.swarmplot
- seaborn.boxplot
- seaborn.violinplot
- seaborn.boxenplot
- seaborn.pointplot
- seaborn.barplot
- seaborn.countplot
- seaborn.jointplot
- seaborn.pairplot
- seaborn.distplot
- seaborn.kdeplot
- seaborn.rugplot
- seaborn.lmplot
- seaborn.regplot
- seaborn.residplot
- seaborn.heatmap
- seaborn.clustermap
- seaborn.FacetGrid
- seaborn.FacetGrid.map
- seaborn.FacetGrid.map_dataframe
- seaborn.PairGrid
- seaborn.PairGrid.map
- seaborn.PairGrid.map_diag
- seaborn.PairGrid.map_offdiag
- seaborn.PairGrid.map_lower
- seaborn.PairGrid.map_upper
- seaborn.JointGrid
- seaborn.JointGrid.plot
- seaborn.JointGrid.plot_joint
- seaborn.JointGrid.plot_marginals
- seaborn.set
- seaborn.axes_style
- seaborn.set_style
- seaborn.plotting_context
- seaborn.set_context
- seaborn.set_color_codes
- seaborn.reset_defaults
- seaborn.reset_orig
- seaborn.set_palette
- seaborn.color_palette
- seaborn.husl_palette
- seaborn.hls_palette
- seaborn.cubehelix_palette
- seaborn.dark_palette
- seaborn.light_palette
- seaborn.diverging_palette
- seaborn.blend_palette
- seaborn.xkcd_palette
- seaborn.crayon_palette
- seaborn.mpl_palette
- seaborn.choose_colorbrewer_palette
- seaborn.choose_cubehelix_palette
- seaborn.choose_light_palette
- seaborn.choose_dark_palette
- seaborn.choose_diverging_palette
- seaborn.load_dataset
- seaborn.despine
- seaborn.desaturate
- seaborn.saturate
- seaborn.set_hls_values