Matplolibは、OPが求めていた「注釈線」を許可するようになりました。このannotate()
関数は、いくつかの形式の接続パスを可能にし、ヘッドレスおよびテイルス矢印、つまり単純な線はその1つです。
ax.annotate("",
xy=(0.2, 0.2), xycoords='data',
xytext=(0.8, 0.8), textcoords='data',
arrowprops=dict(arrowstyle="-",
connectionstyle="arc3, rad=0"),
)
ではドキュメント、それはあなたが最初の引数として空の文字列を持つ唯一の矢印を描くことができると言います。
OPの例から:
%matplotlib notebook
import numpy as np
import matplotlib.pyplot as plt
np.random.seed(5)
x = np.arange(1, 101)
y = 20 + 3 * x + np.random.normal(0, 60, 100)
plt.plot(x, y, "o")
# draw vertical line from (70,100) to (70, 250)
plt.annotate("",
xy=(70, 100), xycoords='data',
xytext=(70, 250), textcoords='data',
arrowprops=dict(arrowstyle="-",
connectionstyle="arc3,rad=0."),
)
# draw diagonal line from (70, 90) to (90, 200)
plt.annotate("",
xy=(70, 90), xycoords='data',
xytext=(90, 200), textcoords='data',
arrowprops=dict(arrowstyle="-",
connectionstyle="arc3,rad=0."),
)
plt.show()
gcalmettesの答えのアプローチと同様に、色、線幅、線のスタイルなどを選択できます。
ここでは、2つのサンプル行の1つを赤く太くし、100%不透明ではないコードの一部を変更しています。
# draw vertical line from (70,100) to (70, 250)
plt.annotate("",
xy=(70, 100), xycoords='data',
xytext=(70, 250), textcoords='data',
arrowprops=dict(arrowstyle="-",
edgecolor = "red",
linewidth=5,
alpha=0.65,
connectionstyle="arc3,rad=0."),
)
を調整して、接続線に曲線を追加することもできconnectionstyle
ます。