在水平条形上显示值
要在水平条形图中显示每个条形的值,您可以使用以下命令方法:
for i, v in enumerate(y): ax.text(v + 3, i, str(v), color='blue', fontweight='bold', verticalalignment='center')
解释:
示例:
# Update the x and y values from the original example 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') # Add code to display the values on the bars for i, v in enumerate(y): ax.text(v + 3, i, str(v), color='blue', fontweight='bold', verticalalignment='center') # Display the plot plt.show()
这将生成一个水平条形图,其值显示在每个条形的顶部。
以上是如何在 Matplotlib 中的水平条形图上显示值?的详细内容。更多信息请关注PHP中文网其他相关文章!