图例中的多个标记

时间:2013-06-01 19:24:22

标签: matplotlib duplicates legend duplicate-removal

我的绘图脚本为每个标签创建了两个图例。我不知道如何使legend()不重复。我检查了stackoverflow并找到了两种方法。但我不能在这里实施它们。有任何想法吗?

Matplotlib: Don't show errorbars in legend

Stop matplotlib repeating labels in legend

symbols = [u'\u2193']
#Plotting our vsini values
for i, symbol in enumerate(symbols):
    for x0,y0 in zip(vsini_slit_cl, vsini_slit):
        plt.text(x0,y0, symbol, fontname='STIXGeneral', size = 10, va='center', ha='center', clip_on=True,color = '#737373')
for i, symbol in enumerate(symbols):
    for x0, y0 in zip(vsini_cl_sl, vsini_sl):
       plt.text(x0, y0, symbol, fontname='STIXGeneral', size = 10, va='center', ha='center', clip_on=True)

# PLOTTING VSINI FROM LITERATURE 
plt.plot((vmag_lit-jmag_lit), vsini_lit, 'o', color = '#a6a6a6', label='Literature')
# PLOTTING SLOW VSINI FROM LITERATURE 
plt.plot(vsini_slit_cl, vsini_slit, 'o', color = '#a6a6a6')
# PLOTTING VSINI FROM OUR WORK
plt.plot(vsini_cl_sl, vsini_sl, 'o', label='This Work' )
plt.errorbar(vsini_color, vsini_chad, yerr=vsini_chad_sig, fmt='bo', capsize=3)
plt.legend()        
plt.savefig('vsini_colors.jpg', dpi=200)

enter image description here

1 个答案:

答案 0 :(得分:4)

只需使用

plt.legend(numpoints=1)

默认行为是使用2个点,这就是为行创建图例条目所需的内容。

请参阅:legend user guideplt.legend doc以及legend doc