本文介绍了如何使用 pyplot.barh() 在每个条上显示条的值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我生成了条形图,如何在每个条形上显示条形值?
I generated a bar plot, how can I display the value of the bar on each bar?
当前情节:
我想得到的:
我的代码:
import os
import numpy as np
import matplotlib.pyplot as plt
x = [u'INFO', u'CUISINE', u'TYPE_OF_PLACE', u'DRINK', u'PLACE', u'MEAL_TIME', u'DISH', u'NEIGHBOURHOOD']
y = [160, 167, 137, 18, 120, 36, 155, 130]
fig, ax = plt.subplots()
width = 0.75 # the width of the bars
ind = np.arange(len(y)) # the x locations for the groups
ax.barh(ind, y, width, color="blue")
ax.set_yticks(ind+width/2)
ax.set_yticklabels(x, minor=False)
plt.title('title')
plt.xlabel('x')
plt.ylabel('y')
#plt.show()
plt.savefig(os.path.join('test.png'), dpi=300, format='png', bbox_inches='tight') # use format='svg' or 'pdf' for vectorial pictures
推荐答案
添加:
for i, v in enumerate(y):
ax.text(v + 3, i + .25, str(v), color='blue', fontweight='bold')
结果:
y 值 v
是 ax.text
的 x 位置和字符串值,方便地,条形图的每个条的度量为 1,所以枚举 i
是 y 位置.
The y-values v
are both the x-location and the string values for ax.text
, and conveniently the barplot has a metric of 1 for each bar, so the enumeration i
is the y-location.
这篇关于如何使用 pyplot.barh() 在每个条上显示条的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!