使用matplotlib在条形图上添加值标签 [英] Adding value labels on a bar chart using matplotlib

查看:92
本文介绍了使用matplotlib在条形图上添加值标签的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

打印时

graph_by_users = users.pivot(index='address', columns='used_at', values='users')

我知道

              address  used_at   time online
0               am.ru     2014    114.741944
1               am.ru     2015     50.945000
2             auto.ru     2014   2533.983889
3             auto.ru     2015   1923.157500
4            avito.ru     2014  23473.097500
5            avito.ru     2015  24357.936389
6       avtomarket.ru     2014     29.680278
7       avtomarket.ru     2015     26.646389
8   cars.mail.ru/sale     2014     58.737778
9   cars.mail.ru/sale     2015     46.466111
10            drom.ru     2014   3059.709722
11            drom.ru     2015   2695.590000
12              e1.ru     2014   7966.210278
13              e1.ru     2015   7767.182500
14        irr.ru/cars     2014     61.720278
15        irr.ru/cars     2015     37.132778

我需要打印条形图

ax = graph_by_duration.plot.bar(width=0.5, ax=axes[0])
ax1 = graph_by_duration.plot.bar(width=0.8)
rects = ax1.patches
labels = ["%d" % i for i in time['time online']]
for rect, label in zip(rects, labels):
    height = rect.get_height()
    ax1.text(rect.get_x() + rect.get_width()/2, height + 5, label,     
    ha='center', va='bottom')

它将值放入2014,然后放入2015.但这是错误的,因为在我的数据框中,意思是混杂的

It put values to 2014 and after to 2015. But it's wrong, because in my dataframe means are mixed

推荐答案

我认为您混淆了标签.试试这个:

I think you've mixed up your labels. Try this:

ax = graph_by_duration.plot(kind='bar', width=0.5)
[label.set_rotation(25) for label in ax.get_xticklabels()]

labels = [int(round(graph_by_duration.loc[i, y]))
          for y in graph_by_duration.columns.tolist()
          for i in graph_by_duration.index]

for rect, label in zip(rects, labels):
    height = rect.get_height()
    ax.text(rect.get_x() + rect.get_width()/2, height + 5, label,     
    ha='center', va='bottom', rotation=15)

plt.show()

这篇关于使用matplotlib在条形图上添加值标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆