2

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()
4

1 に答える 1

2

quiverkey関数を使用して、矢印の凡例を作成できます。

plt.quiverkey(QV1, 1.2, 0.515, 2, 'arrow 1', coordinates='data')
plt.quiverkey(QV2, 1.2, 0.520, 2, 'arrow 2', coordinates='data')
plt.quiverkey(QV3, 1.2, 0.525, 2, 'arrow 3', coordinates='data')
于 2013-10-03T20:04:34.750 に答える