由matplotlib.annotate创建的偏移文本注释

时间:2018-12-20 16:54:45

标签: python matplotlib annotations

我正在使用matplotlib中的带注释的文本创建箭头,并希望从箭头末端偏移文本。

import matplotlib.pyplot as plt

ax = plt.subplot()
ax.annotate(
    "test",
    xy=(0.2, 0.2),
    xytext=(0.5, 0.5),
    arrowprops=dict(
        arrowstyle="simple",
        facecolor="black",
    )
)

plt.show()

此处创建的文本仅到达箭头的末尾。有没有办法用手动坐标抵消它?

0 个答案:

没有答案