3

我想在 matplotlib 图中注释某些长度。例如,点 A 和 B 之间的距离。

为此,我想我可以使用注释并弄清楚如何提供箭头的开始和结束位置。或者,使用箭头并标记该点。

我尝试使用后者,但我不知道如何获得 2 头箭头:

from pylab import *

for i in [0, 1]:
    for j in [0, 1]:
        plot(i, j, 'rx')

axis([-1, 2, -1, 2]) 
arrow(0.1, 0, 0, 1, length_includes_head=True, head_width=.03) # Draws a 1-headed arrow
show()

如何创建一个 2 向箭头?更好的是,在 matplotlib 图中是否有另一种(更简单的)标记尺寸的方法?

4

2 回答 2

9

您可以使用该属性更改箭头的样式arrowstyle,例如

ax.annotate(..., arrowprops=dict(arrowstyle='<->'))

给出一个双向箭头。

一个完整的例子可以在这里找到大约三分之一的页面,可能有不同的样式。

至于在地块上标记尺寸的“更好”方式,我想不出任何办法。

编辑:这是一个完整的示例,如果有帮助,您可以使用

import matplotlib.pyplot as plt
import numpy as np

def annotate_dim(ax,xyfrom,xyto,text=None):

    if text is None:
        text = str(np.sqrt( (xyfrom[0]-xyto[0])**2 + (xyfrom[1]-xyto[1])**2 ))

    ax.annotate("",xyfrom,xyto,arrowprops=dict(arrowstyle='<->'))
    ax.text((xyto[0]+xyfrom[0])/2,(xyto[1]+xyfrom[1])/2,text,fontsize=16)

x = np.linspace(0,2*np.pi,100)
plt.plot(x,np.sin(x))
annotate_dim(plt.gca(),[0,0],[np.pi,0],'$\pi$')

plt.show()
于 2013-02-15T10:39:01.367 回答
0

以下为您的绘图提供了一个很好的维度:使用不同的箭头道具('<->' 和 '|-|')添加了两次注释,之后将文本置于行的中间,并使用 bbox覆盖标签下的线。

axs[0].annotate("", xy=(0, ht), xytext=(w, ht), textcoords=axs[0].transData, arrowprops=dict(arrowstyle='<->'))
axs[0].annotate("", xy=(0, ht), xytext=(w, ht), textcoords=axs[0].transData, arrowprops=dict(arrowstyle='|-|'))
bbox=dict(fc="white", ec="none")
axs[0].text(w/2, ht, "L=200 m", ha="center", va="center", bbox=bbox)

在此处输入图像描述

于 2020-12-29T22:58:51.500 回答