使用 matplotlib 在条形图上添加值标签
Posted
技术标签:
【中文标题】使用 matplotlib 在条形图上添加值标签【英文标题】:Adding value labels on a bar chart using matplotlib 【发布时间】:2016-07-06 19:29:03 【问题描述】:当我打印时
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
之后。但这是错误的,因为在我的数据框中意味着混合
【问题讨论】:
【参考方案1】:我认为您混淆了标签。试试这个:
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 在条形图上添加值标签的主要内容,如果未能解决你的问题,请参考以下文章
如何在 matplotlib 条形图上旋转 x 轴刻度标签?尝试了几种方法,都没有奏效
如何在 matplotlib 条形图上旋转 x 轴刻度标签?尝试了几种方法,都没有奏效
在这种情况下,如何使用 barh() 在条形图上显示值? [复制]
R语言ggplot2可视化:使用dplyr包计算每个分组个数的比例(对计算获得的百分比进行近似,值保留整数部分)使用ggplot2可视化条形图(bar plot)并在条形图上添加百分比标签