如何用pyplot.barh()显示每个栏上栏的值?

Fra*_*urt 73 python matplotlib bar-chart

我生成了条形图,如何在每个条形图上显示条形图的值?

目前情节:

在此输入图像描述

我想要得到的:

在此输入图像描述

我的代码:

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
Run Code Online (Sandbox Code Playgroud)

cph*_*wis 135

加:

for i, v in enumerate(y):
    ax.text(v + 3, i + .25, str(v), color='blue', fontweight='bold')
Run Code Online (Sandbox Code Playgroud)

结果:

在此输入图像描述

y值v既是x位置又是字符串值ax.text,并且方便地,条形图对于每个条形具有1的度量,因此枚举i是y位置.

  • 也许替换使用va ='center'而不是"i + .25"进行水平对齐 (10认同)
  • `plt.text(v,i,""+ str(v),color ='blue',va ='center',fontweight ='bold')` (8认同)

Fra*_*urt 23

我注意到api示例代码包含一个条形图示例,每个条形图上显示条形图的值:

"""
========
Barchart
========

A bar plot with errorbars and height labels on individual bars
"""
import numpy as np
import matplotlib.pyplot as plt

N = 5
men_means = (20, 35, 30, 35, 27)
men_std = (2, 3, 4, 1, 2)

ind = np.arange(N)  # the x locations for the groups
width = 0.35       # the width of the bars

fig, ax = plt.subplots()
rects1 = ax.bar(ind, men_means, width, color='r', yerr=men_std)

women_means = (25, 32, 34, 20, 25)
women_std = (3, 5, 2, 3, 3)
rects2 = ax.bar(ind + width, women_means, width, color='y', yerr=women_std)

# add some text for labels, title and axes ticks
ax.set_ylabel('Scores')
ax.set_title('Scores by group and gender')
ax.set_xticks(ind + width / 2)
ax.set_xticklabels(('G1', 'G2', 'G3', 'G4', 'G5'))

ax.legend((rects1[0], rects2[0]), ('Men', 'Women'))


def autolabel(rects):
    """
    Attach a text label above each bar displaying its height
    """
    for rect in rects:
        height = rect.get_height()
        ax.text(rect.get_x() + rect.get_width()/2., 1.05*height,
                '%d' % int(height),
                ha='center', va='bottom')

autolabel(rects1)
autolabel(rects2)

plt.show()
Run Code Online (Sandbox Code Playgroud)

输出:

在此输入图像描述

FYI matplotlib的"barh"中的高度变量单位是多少?(截至目前,没有简单的方法为每个栏设置固定的高度)


Skr*_*mak 14

对于任何想要将标签放在条形底部的人来说,只需将v除以标签的值,如下所示:

for i, v in enumerate(labels):
    axes.text(i-.25, 
              v/labels[i]+100, 
              labels[i], 
              fontsize=18, 
              color=label_color_list[i])
Run Code Online (Sandbox Code Playgroud)

(注意:我添加了100,所以它不是绝对的底部)

要得到这样的结果: 在此输入图像描述


Sat*_*tan 13

我知道这是一个老话题,但我通过Google多次登陆这里,并认为没有给出答案真的令人满意.尝试使用以下功能之一:

编辑:因为我在这个旧线程上得到了一些喜欢,我也想分享一个更新的解决方案(基本上将我的前两个函数放在一起并自动决定它是一个条形图还是hbar图):

def label_bars(ax, bars, text_format, **kwargs):
    """
    Attaches a label on every bar of a regular or horizontal bar chart
    """
    ys = [bar.get_y() for bar in bars]
    y_is_constant = all(y == ys[0] for y in ys)  # -> regular bar chart, since all all bars start on the same y level (0)

    if y_is_constant:
        _label_bar(ax, bars, text_format, **kwargs)
    else:
        _label_barh(ax, bars, text_format, **kwargs)


def _label_bar(ax, bars, text_format, **kwargs):
    """
    Attach a text label to each bar displaying its y value
    """
    max_y_value = ax.get_ylim()[1]
    inside_distance = max_y_value * 0.05
    outside_distance = max_y_value * 0.01

    for bar in bars:
        text = text_format.format(bar.get_height())
        text_x = bar.get_x() + bar.get_width() / 2

        is_inside = bar.get_height() >= max_y_value * 0.15
        if is_inside:
            color = "white"
            text_y = bar.get_height() - inside_distance
        else:
            color = "black"
            text_y = bar.get_height() + outside_distance

        ax.text(text_x, text_y, text, ha='center', va='bottom', color=color, **kwargs)


def _label_barh(ax, bars, text_format, **kwargs):
    """
    Attach a text label to each bar displaying its y value
    Note: label always outside. otherwise it's too hard to control as numbers can be very long
    """
    max_x_value = ax.get_xlim()[1]
    distance = max_x_value * 0.0025

    for bar in bars:
        text = text_format.format(bar.get_width())

        text_x = bar.get_width() + distance
        text_y = bar.get_y() + bar.get_height() / 2

        ax.text(text_x, text_y, text, va='center', **kwargs)
Run Code Online (Sandbox Code Playgroud)

现在您可以将它们用于常规条形图:

fig, ax = plt.subplots((5, 5))
bars = ax.bar(x_pos, values, width=0.5, align="center")
value_format = "{:.1%}"  # displaying values as percentage with one fractional digit
label_bars(ax, bars, value_format)
Run Code Online (Sandbox Code Playgroud)

或水平条形图:

fig, ax = plt.subplots((5, 5))
horizontal_bars = ax.barh(y_pos, values, width=0.5, align="center")
value_format = "{:.1%}"  # displaying values as percentage with one fractional digit
label_bars(ax, horizontal_bars, value_format)
Run Code Online (Sandbox Code Playgroud)


tdy*_*tdy 9

matplotlib 3.4.0 中的新功能

现在有一个内置的Axes.bar_label便利方法:

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]
ind = np.arange(len(y))

fig, ax = plt.subplots()
ax.barh(ind, y)
ax.set_yticks(ind)
ax.set_yticklabels(x)

# new helper method to auto-label bars
ax.bar_label(ax.containers[0])
Run Code Online (Sandbox Code Playgroud)

bar_label 示例

对于分组条形图,请ax.containers改为迭代:

for container in ax.containers:
    ax.bar_label(container)
Run Code Online (Sandbox Code Playgroud)

更全面的演示参见官方文档的条形标注示例


小智 6

使用plt.text()将文本放入绘图中。

例:

import matplotlib.pyplot as plt
N = 5
menMeans = (20, 35, 30, 35, 27)
ind = np.arange(N)

#Creating a figure with some fig size
fig, ax = plt.subplots(figsize = (10,5))
ax.bar(ind,menMeans,width=0.4)
#Now the trick is here.
#plt.text() , you need to give (x,y) location , where you want to put the numbers,
#So here index will give you x pos and data+1 will provide a little gap in y axis.
for index,data in enumerate(menMeans):
    plt.text(x=index , y =data+1 , s=f"{data}" , fontdict=dict(fontsize=20))
plt.tight_layout()
plt.show()
Run Code Online (Sandbox Code Playgroud)

该图将显示为:

条形图,值在顶部

  • @S.Ramjit `plt.text(x=index, y=data+1, s=f"{data}", fontdict=dict(fontsize=20), va='center')` (2认同)
  • @theGtknerd 他要求的是 `ha='center'`。 (2认同)

toz*_*CSS 5

对于熊猫人:

ax = s.plot(kind='barh') # s is a Series (float) in [0,1]
[ax.text(v, i, '{:.2f}%'.format(100*v)) for i, v in enumerate(s)];
Run Code Online (Sandbox Code Playgroud)

而已。另外,对于那些喜欢apply使用枚举而不是循环的人:

it = iter(range(len(s)))
s.apply(lambda x: ax.text(x, next(it),'{:.2f}%'.format(100*x)));
Run Code Online (Sandbox Code Playgroud)

此外,ax.patches还会为您提供您所拥有的酒吧ax.bar(...)。如果您想应用@SaturnFromTitan的功能或其他技术。