117

matplotlibをアップグレードして以来、凡例を作成しようとすると、次のエラーが発生します。

/usr/lib/pymodules/python2.7/matplotlib/legend.py:610: UserWarning: Legend does not support [<matplotlib.lines.Line2D object at 0x3a30810>]
Use proxy artist instead.

http://matplotlib.sourceforge.net/users/legend_guide.html#using-proxy-artist

  warnings.warn("Legend does not support %s\nUse proxy artist instead.\n\nhttp://matplotlib.sourceforge.net/users/legend_guide.html#using-proxy-artist\n" % (str(orig_handle),))
/usr/lib/pymodules/python2.7/matplotlib/legend.py:610: UserWarning: Legend does not support [<matplotlib.lines.Line2D object at 0x3a30990>]
Use proxy artist instead.

http://matplotlib.sourceforge.net/users/legend_guide.html#using-proxy-artist

  warnings.warn("Legend does not support %s\nUse proxy artist instead.\n\nhttp://matplotlib.sourceforge.net/users/legend_guide.html#using-proxy-artist\n" % (str(orig_handle),))

これは、次のような簡単なスクリプトでも発生します。

import matplotlib.pyplot as plt

a = [1,2,3]
b = [4,5,6]
c = [7,8,9]

plot1 = plt.plot(a,b)
plot2 = plt.plot(a,c)

plt.legend([plot1,plot2],["plot 1", "plot 2"])
plt.show()

エラーの原因を診断するのに、エラーが私をかなり役に立たない方向に向けているというリンクを見つけました。

4

4 に答える 4

190

カンマを追加する必要があります。

plot1, = plt.plot(a,b)
plot2, = plt.plot(a,c)

カンマが必要な理由は、コマンドから実際に作成された数に関係なく、plt.plot()が行オブジェクトのタプルを返すためです。カンマがないと、「plot1」と「plot2」はラインオブジェクトではなくタプルになり、後でplt.legend()を呼び出すことができなくなります。

コンマは結果を暗黙的に解凍し、タプルの代わりに「plot1」と「plot2」がタプル内の最初のオブジェクト、つまり実際に必要なラインオブジェクトになるようにします。

http://matplotlib.sourceforge.net/users/legend_guide.html#adjusting-the-order-of-legend-items

line、= plot(x、sin(x))コンマは何の略ですか?

于 2012-08-16T08:12:11.320 に答える
28

次のように、「label」キーワードを使用します。

plt.plot(x, y, label='x vs. y')

次に、次のように凡例を追加します。

plt.legend()

凡例は、太さ、色などの線のプロパティを保持します。

ここに画像の説明を入力してください

于 2016-08-01T09:51:17.013 に答える
11

handlesAKAを使用するProxy artists

import matplotlib.lines as mlines
import matplotlib.pyplot as plt
# defining legend style and data
blue_line = mlines.Line2D([], [], color='blue', label='My Label')
reds_line = mlines.Line2D([], [], color='red', label='My Othes')

plt.legend(handles=[blue_line, reds_line])

plt.show()
于 2015-01-18T11:19:34.123 に答える
-1

グラフをプロットするときにラベルを使用すると、uだけが凡例を使用できます。x軸名とy軸名が凡例名と異なります。

于 2018-05-01T05:05:39.033 に答える