pyplot.quiver
またはpyplt.annotate
メソッドを使用して描画された矢印の凡例を配置するにはどうすればよいですか?
現在、次のコードを使用しています。
import matplotlib.pyplot as plt
from numpy.random import *
x, y = [1, 2, 3], [0.5, 0.5, 0.5]
u1,v1 = randn(3), randn(3)
u2,v2 = randn(3), randn(3)
u3,v3 = randn(3), randn(3)
QV1 = plt.quiver(x, y, u1, v1, color='r')
QV2 = plt.quiver(x, y, u2, v2, color='b')
QV3 = plt.quiver(x, y, u3, v3, color='g')
簡単な方法で 3 つの異なる色の矢印を表示する簡単な凡例を配置したいと思います。
plt.plot(x, y, color='r', label='red')
...
plt.legend()