条形图上的不需要的标签与matplotlib

时间:2015-02-25 14:47:31

标签: python matplotlib

我的所有酒吧都没有,尽管设置了yerr = None,但我仍然遇到同样的问题。否则条形图正确。如何删除每个条形图上方打印的0。

N = len(my_tuple)
plt.figure(0)
ind = np.arange(N)  
width = 0.35       
fig, ax = plt.subplots()
rects1 = ax.bar(ind, g_tuple, width, color='r',  linewidth=2,alpha=0.8)
rects2 = ax.bar(ind+width, f_tuple, width, color='y', linewidth=2,alpha=0.8)
ax.set_ylabel('XXX')
ax.set_title('XXX')
ax.set_xticks(ind+width)
ax.set_xticklabels( lob_tuple )
ax.legend( (rects1[0], rects2[0]), ('G', 'F') )
autolabel(rects1)
autolabel(rects2)

我已尝试yerr=Noneyerr=0,但这不起作用

1 个答案:

答案 0 :(得分:0)

当我在bar方法中查看时,原来它autolabel执行此命令。