首頁 > 軟體

python中的annotate函数使用

2022-05-13 21:42:18

python的annotate函数

annotate函数

该函数的详细引数可呼叫内建属性__doc__检视。

	import matplotlib.pyplot as plt
    # plt.annotate(str, xy=data_point_position, xytext=annotate_position, 
    #              va="center",  ha="center", xycoords="axes fraction", 
    #              textcoords="axes fraction", bbox=annotate_box_type, arrowprops=arrow_style)
    # str是给资料点新增注释的内容,支援输入一个字串
    # xy=是要新增注释的资料点的位置
    # xytext=是注释内容的位置
    # bbox=是注释框的风格和颜色深度,fc越小,注释框的颜色越深,支援输入一个字典
    # va="center",  ha="center"表示注释的坐标以注释框的正中心为准,而不是注释框的左下角(v代表垂直方向,h代表水平方向)
    # xycoords和textcoords可以指定资料点的坐标系和注释内容的坐标系,通常只需指定xycoords即可,textcoords预设和xycoords相同
    # arrowprops可以指定箭头的风格支援,输入一个字典
    # plt.annotate()的详细引数可用__doc__检视,如:print(plt.annotate.__doc__)

例1:

	import matplotlib.pyplot as plt
    fig = plt.figure(1, facecolor='white')
    fig.clf()
    plt.annotate('a decision node', (0.1, 0.5), (0.5, 0.1), va="center",  ha="center",
                 xycoords="axes fraction", textcoords="axes fraction", 
                 bbox=dict(boxstyle="sawtooth", fc="0.8"), arrowprops=dict(arrowstyle="<-"))
    plt.show()

结果如下:

例2:给注释和资料点指定不同的坐标系

	import matplotlib.pyplot as plt
    fig = plt.figure(1, facecolor='white')
    fig.clf()
    # 这里指定资料点的坐标系原点在xy轴的左下角,而注释的坐标系原点在这个影象(figure)的左下角
    # 所以才会出现注释内容下移覆盖了x轴
    plt.annotate('a decision node', (0.1, 0.5), (0.5, 0.1), va="center",  ha="center",
                 xycoords="axes fraction", textcoords="figure fraction", 
                 bbox=dict(boxstyle="sawtooth", fc="0.8"), arrowprops=dict(arrowstyle="<-"))
    plt.show()

结果如下:

视觉化annotate()函数解析

函数功能:新增图形内容细节的指向型注释文字。

呼叫签名:

plt.annotate(string, xy=(np.pi/2, 1.0), xytext=((np.pi/2)+0.15, 1,5), weight="bold", color="b", arrowprops=dict(arrowstyle="->", connectionstyle="arc3", color="b"))
  • string:图形内容的注释文字
  • xy:被注释图形内容的位置坐标
  • xytext:注释文字的位置坐标
  • weight:注释文字的字型粗细风格
  • color:注释文字的字型颜色
  • arrowprops:指示被注释内容的箭头的属性字典

程式码实现:

import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(0.05, 10, 1000)
y = np.sin(x)
plt.plot(x, y, ls="-.", lw=2, c="c", label="plot figure")
plt.legend()
plt.annotate("maximum", xy=(np.pi/2, 1.0), xytext=((np.pi/2)+1.0, .8),
             weight="bold", color="b", 
             arrowprops=dict(arrowstyle="->", connectionstyle="arc3", color="b"))
plt.show()

以上为个人经验,希望能给大家一个参考,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com