काम नहीं कर रहा कभी matplotlib मैं निम्न त्रुटि जब भी लीजेंड बनाने की कोशिश कर पाने के उन्नयन के बाद से:matplotlib महापुरूष
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()
मैंने:
/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),))
यह भी इस तरह एक छोटी सी स्क्रिप्ट के साथ होता है त्रुटि मिली है कि त्रुटि मुझे त्रुटि के स्रोत का निदान करने में काफी बेकार की ओर इंगित करती है।
यही काम किया, सुंदर रहस्यमय सामान! –
क्या आप यहां स्पष्टीकरण कॉपी/जोड़ सकते हैं? stackoverflow साइट पर प्रासंगिक भागों की प्रतिलिपि को प्रोत्साहित करता है (हाइलाइटिंग, संग्रह) – n611x007