当前位置:   article > 正文

Matplotlib 可视化之箭头与标注的高级应用

textcoords="offset points

时间线是按时间顺序显示的事件列表。它通常是一个图形设计,显示一个长条,标有与之平行的日期,通常是同时期的事件。

b38f8ff45436d631e6822838ff8b487d.png
A_New_Chart_of_History_color 来源:维基百科

时间线可以使用任何合适的比例来表示时间,适合主题和数据;许多人使用线性刻度,其中一个距离单位等于设定的时间量。此时间刻度取决于时间轴中的事件。

b37297a606b251f2d98a3a0130070454.png

Matplotlib最初是由John D. Hunter编写的,第一个公开版本于2003年发布。在2012年8月John Hunter去世前不久,Michael Droettboom被提名为matplotlib的首席开发者,2014年Thomas Caswell加入,他现在(2021年)是首席开发者。最新的版本是3.4(撰写本文时),并且只支持Python 3,而2.2版本是一个长期支持的版本,兼容Python 2和Python 3。

Timeline绘图

时间线

320fc6df9c09d8b5ba821a30b3cb426d.png
绘图步骤
  1. 创建画布、设置字体大小、设置x、y坐标轴及标签

  2. 绘制直线图、空心的散点图

  3. 隐藏x、y坐标轴

代码
  1. # step1
  2. fig = plt.figure(figsize=(156))
  3. ax = fig.add_subplot(111, xlim=(2002.52021.5), 
  4.                      ylim=(06.5), yticks=([]))
  5. ax.tick_params("x", labelsize="x-small", which="major")
  6. ax.set_xticks(np.arange(200320222))
  7. # step2
  8. plt.plot([2002.52021.5], [00], 
  9.          color="black", linewidth=1.0, clip_on=False)
  10. X = np.arange(20032022)
  11. Y = np.zeros(len(X))
  12. plt.scatter(
  13.     X,
  14.     Y,
  15.     s=100,         # 散点大小
  16.     linewidth=1.0, # 散点线宽
  17.     zorder=10,     # 见注解
  18.     clip_on=False, # 是否设置两个线相交时的剪辑
  19.     edgecolor="black", # 散点的边缘颜色
  20.     facecolor="white", # 散点的填充颜色
  21. )
  22. # step3
  23. ax.spines["right"].set_visible(False)
  24. ax.spines["left"].set_visible(False)
  25. ax.spines["top"].set_visible(False)
  26. ax.spines["bottom"].set_visible(False)

注解:

Matplotlibzorder 属性决定了物体与前景的距离。zorder 值较小的对象出现在更靠近背景的位置,而具有较大值的对象出现在更靠近前面的位置。例如,如果我正在制作一个带有线图的散点图,我可以通过增加它的 zorder 来将线向前移动。

标注

fec67fccdcdb5aec4005d937156b6aeb.png

要掌握时间轴图绘制,需要先了解 Matplotlib 中的标注。标注分为基本标注和高级标注。

  • 基本标注:
    使用annotate()函数,其中由参数xy表示的标注位置和xytext的文本位置,这两个参数都是(x, y)元组。

  • 高级标注:
    使用框和文本来标注,在pyplot模块(或Axes类的text方法)中的text()函数接受bbox关键字参数,在文本周围绘制一个框。

关键点:箭头及文本,首先学习下箭头➡️如何绘制。

箭头风格

Matplotlib 里面画箭头通常比较困难,推荐使用 plt.annotate() 函数。这个函数既可以创建文字,也可以创建箭头,而且它创建的箭头能够进行非常灵活的配置。

箭头的风格是通过 arrowprops 字典控制的,里面有许多可用的选项。由于这些选项在 Matplotlib 的官方文档中都有非常详细的介绍,为了方便阅读,这里给大家列出一些常用的参数及其设置值。

Axes.annotate(self, s, xy, *args, **kwargs)
主要参数:
  • s:是注释的文本。

  • xy:是要注释的点(x, y)。

  • xytext:是可选参数。它是放置文本的位置(x, y)。

  • xycoords:被注释点的坐标系属性,允许输入的值如下

参数坐标系
'figure points'距离图形左下角的点数量
'figure pixels'距离图形左下角的像素数量
'figure fraction'0,0 是图形左下角,1,1 是右上角
'axes points'距离轴域左下角的点数量
'axes pixels'距离轴域左下角的像素数量
'axes fraction'0,0 是轴域左下角,1,1 是右上角
'data'使用轴域数据坐标系
  • textcoords:注释文本的坐标系属性,默认与xycoords属性值相同,也可设为不同的值。除了允许输入xycoords的属性值,还允许输入以下两种:

价值描述
''offset points''xy值的偏移量(以磅为单位)
''offset points''xy值偏移(以像素为单位)
  • arrowprops:箭头的样式,dict(字典)型数据,如果该属性非空,则会在注释文本和被注释点之间画一个箭头。如果不设置'arrowstyle' 关键字,则允许包含以下关键字:

关键字描述
width箭头的宽度(单位是点)
headwidth箭头头部的宽度(点)
headlength箭头头部的长度(点)
shrink箭头两端收缩的百分比(占总长)
?任何 matplotlib.patches.FancyArrowPatch中的关键字
FancyArrowPatch的关键字包括:
关键字描述
arrowstyle箭头的样式
connectionstyle连接线的样式
relpos箭头起始点相对注释文本的位置,默认为 (0.5, 0.5),即文本的中心,(0,0)表示左下角,(1,1)表示右上角
patchA箭头起点处的图形(matplotlib.patches对象),默认是注释文字框
patchB箭头终点处的图形(matplotlib.patches对象),默认为空
shrinkA箭头起点的缩进点数,默认为2
shrinkB箭头终点的缩进点数,默认为2
mutation_scaledefault is text size (in points)
mutation_aspectdefault is 1.
?any key for `matplotlib.patches.PathPatch`[1]
  • annotation_clip :
    布尔值,可选参数,默认为空。设为True时,只有被注释点在子图区内时才绘制注释;设为False时,无论被注释点在哪里都绘制注释。仅当xycoords为 'data' 时,默认值空相当于True。

箭头

箭头的绘制需要几个步骤:

① 创建两个点之间的连接路径。这由connectionstyle键值控制。

② 如果提供了patch对象(patchApatchB),则会剪切路径以避开该patch。

③ 路径进一步由提供的像素总量来缩小(shirnkA&shrinkB

④ 路径转换为箭头patch,由arrowstyle键值控制。

连接路径

两个点之间的连接路径的创建由connectionstyle键控制,并且可用以下样式。

名称属性
angleangleA=90,angleB=0,rad=0.0
angle3angleA=90,angleB=0
arcangleA=0,angleB=0,armA=None,armB=None,rad=0.0
arc3rad=0.0
bararmA=0.0,armB=0.0,fraction=0.3,angle=None

注意,angle3arc3中的3意味着所得到的路径是二次样条段(三个控制点)。如下面将讨论的,当连接路径是二次样条时,可以使用一些箭头样式选项。

  1. ax.annotate(arrowprops=dict(
  2.        connectionstyle=connectionstyle)

在函数ax.annotate()中的连接路径的参数arrowprops,而实际控制箭头样式的参数是connectionstyle,通过设置不同的connectionstyle以改变不同的箭头路径样式。

例如我们设置如下参数connectionstyle具体值,并绘制出如下样式。

  1. "angle3,angleA=90,angleB=0"
  2. "angle3,angleA=0,angleB=90"
  3. "arc3,rad=0."
  4. "arc3,rad=0.3"
  5. "arc3,rad=-0.3"
  6. "angle,angleA=-90,angleB=180,rad=0"
  7. "angle,angleA=-90,angleB=180,rad=5"
  8. "angle,angleA=-90,angleB=10,rad=5"
  9. "arc,angleA=-90,angleB=0,armA=30,armB=30,rad=0"
  10. "arc,angleA=-90,angleB=0,armA=30,armB=30,rad=5"
  11. "arc,angleA=-90,angleB=0,armA=0,armB=40,rad=0"
  12. "bar,fraction=0.3"
  13. "bar,fraction=-0.3"
  14. "bar,angle=180,fraction=-0.2"
76092845e95bfa7186f2c6c1b364d1fc.png

箭头样式

后根据给定的箭头样式将连接路径(在剪切和收缩之后)变换为箭头补丁。

在函数ax.annotate()中的箭头样式的参数arrowprops,而实际控制箭头样式的参数是arrowstyle,通过设置不同的arrowstyle以改变不同的箭头样式。

  1. ax.annotate(arrowprops=dict(
  2.             arrowstyle=stylenames)

我们可以设置哪些arrowstyle参数呢?可以通过mpatches.ArrowStyle.get_styles()方法查看所有可以设置的样式。

  1. styles = mpatches.ArrowStyle.get_styles()
  2. print(styles.keys())
  1. dict_keys(['-', '<-', '->', '<->', '<|-',
  2. '-|>', '<|-|>', ']-[', ']-', '-[',
  3. '|-|', 'simple', 'fancy', 'wedge'])
8658e7192f324a60aaddab270f254682.png
箭头位置

xy(箭头尖端)和 xytext 位置(文本位置)都以数据坐标为单位。这两个参数可以通过分别设置xycoords和textcoords来指定xyxytext的坐标系。

设置xyxytext的坐标系如下:

  1. (3.2, 6.8) (2.0, 6.8)
  2. (4.2, 5.8) (2.0, 5.8)
  3. (4.2, 4.8) (3.4, 4.8)
  4. (3.2, 3.8) (3.2, 2.8)
cc388355022656f8049f6c35d9a6811e.png

通过上述设置完成操作后,设置标注函数:

  1. def annotate(ax, x, y, text, fc="#ff7777", y0=0):
  2.     y = y - 0.5
  3.     ax.annotate(
  4.         " " + text + " ",
  5.         xy=(x, y),
  6.         xycoords="data",
  7.         xytext=(025),
  8.         textcoords="offset points",
  9.         color="white",
  10.         size="x-small",
  11.         va="center",
  12.         ha="center",
  13.         weight="bold",
  14.         bbox=dict(boxstyle="round", fc=fc, ec="none"),
  15.         arrowprops=dict(
  16.             arrowstyle="wedge, tail_width=1."
  17.             fc=fc, ec="none", patchA=None
  18.         ), 
  19.     )
  20.     plt.plot([x, x], [y, y0], color="black"
  21.              linestyle=":", linewidth=0.75)

并且通过上述函数绘制各个事件:

  1. annotate(ax, 20214"3.4")
  2. annotate(ax, 20203"3.3")
  3. annotate(ax, 20194"3.2")
  4. annotate(ax, 20192"3.1")
  5. annotate(ax, 20183"3.0", y0=1.5)
  6. annotate(ax, 20181"2.2", fc="#777777")
  7. annotate(ax, 20174"2.1", y0=2.5)
  8. annotate(ax, 20172"2.0")
  9. annotate(ax, 20152"1.5")
  10. annotate(ax, 20141"1.4")
  11. annotate(ax, 20132"1.3")
  12. annotate(ax, 20121"1.2")
  13. annotate(ax, 20113"1.1", y0=2.5)
  14. annotate(ax, 20112"1.0")
  15. annotate(ax, 20091"0.99")
  16. annotate(ax, 20031"0.10")
bdf604eda4d9f0d4636b32d005902bf4.png

文本注释

  1. Axes.text(self, x, y, s, 
  2.           fontdict=None, 
  3.           withdash=, **kwargs)
主要参数:
  • x,y:表示坐标值上的值

  • string:表示说明文字

  • fontsize:表示字体大小

  • verticalalignment or va:垂直对齐方式 ,参数:[ 'center' |'top' | 'bottom' | 'baseline' ]

  • horizontalalignment or ha:水平对齐方式 ,参数:[ 'center' |'right' |'left' ]

matplotlib.text.Text实例有各种属性,可以通过关键字参数配置文本命令(例如,title()xlabel()text())。

你可以使用对齐参数horizontalalignmentverticalalignmentmultialignment来布置文本。

  • horizontalalignment控制文本的x位置参数表示文本边界框的左边,中间或右边。

  • verticalalignment控制文本的y位置参数表示文本边界框的底部,中心或顶部。

  • multialignment,仅对于换行符分隔的字符串,控制不同的行是左,中还是右对齐。

这里是一个使用text()命令显示各种对齐方式的例子。在整个代码中使用transform = ax.transAxes,表示坐标相对于轴边界框给出,其中0,0是轴的左下角,1,1是右上角。

53b7dacecebdc79e5ca4c31358af79d6.png

通过绘制两个端点及横线组合,绘制区间线段。

  1. x0, x1 = 2002.52011.9
  2. ax.plot([x0, x1], [55], color="black"
  3.         linewidth=1, marker="|", clip_on=False)
  4. ax.text((x0 + x1) / 25.1"J.D. Hunter"
  5.         ha="center", va="bottom", size="x-small")
  6. x0, x1 = 2012.12017.9
  7. ax.plot([x0, x1], [55], color="black"
  8.         linewidth=1, marker="|", clip_on=False)
  9. ax.text((x0 + x1) / 25.1"M. Droettboom"
  10.         ha="center", va="bottom", size="x-small")
  11. x0, x1 = 2014.12021.5
  12. ax.plot([x0, x1 + 1], [66], color="black"
  13.         linewidth=1, marker="|")
  14. ax.text((x0 + x1) / 26.1"T. Caswell"
  15.         ha="center", va="bottom", size="x-small"

参考资料

[1]

matplotlib.patches.PathPatch: https://matplotlib.org/api/_as_gen/matplotlib.patches.PathPatch.html#matplotlib.patches.PathPatch

[2]

connectionstyle源码: https://matplotlib.org/stable/gallery/userdemo/connectionstyle_demo.html

[3]

fancyarrow_demo源码: http://matplotlib.org/mpl_examples/pylab_examples/fancyarrow_demo.py

[4]

annotation_demo源码: https://matplotlib.org/stable/gallery/text_labels_and_annotations/annotation_demo.html

[5]

Scientific Visualisation-Python & Matplotlib

END

 
 

各位伙伴们好,詹帅本帅搭建了一个个人博客和小程序,汇集各种干货和资源,也方便大家阅读,感兴趣的小伙伴请移步小程序体验一下哦!(欢迎提建议)

推荐阅读

牛逼!Python常用数据类型的基本操作(长文系列第①篇)

牛逼!Python的判断、循环和各种表达式(长文系列第②篇)

牛逼!Python函数和文件操作(长文系列第③篇)

牛逼!Python错误、异常和模块(长文系列第④篇)

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号