使用matplotlib在每个堆积条上的Y值

时间:2015-10-05 14:04:15

标签: python matplotlib charts stacked-chart

有关于在图表上显示实际值的问题。我有打印的图表,需要显示每个堆积条的值。如何显示这些值?

我尝试了ax.text功能,但没有给出预期效果(见图)。当图表标准化为1时,我需要显示每个堆叠条的实际值(顶部是总数,它应该分成每个条形 - 第一条应该有1个数字7,第二条应该有3个数字,其中数字41被每个颜色条的大小分开)。有可能这样做吗?

我的代码我如何提出多个堆叠条:

def autolabel(rects):
    # attach some text labels
    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')

p = [] # list of bar properties
def create_subplot(matrix, colors, axis):
    bar_renderers = []
    ind = np.arange(matrix.shape[1])
    bottoms = np.cumsum(np.vstack((np.zeros(matrix.shape[1]), matrix)), axis=0)[:-1]
    for i, row in enumerate(matrix):
        print bottoms[i]
        r = axis.bar(ind, row, width=0.5, color=colors[i], bottom=bottoms[i])
        bar_renderers.append(r)
        autolabel(r)
    #axis.set_title(title,fontsize=28)
    return bar_renderers

p.extend(create_subplot(nauja_matrica,spalvos, ax))

enter image description here

1 个答案:

答案 0 :(得分:4)

您可以使用ax.text功能显示每个堆叠条的值。对代码进行的修正很少,几乎可以获得所需的结果。实际上,只需用以下代码替换autolabel函数:

def autolabel(rects):
    # Attach some text labels.
    for rect in rects:
        ax.text(rect.get_x() + rect.get_width() / 2.,
                rect.get_y() + rect.get_height() / 2.,
                '%f'%rect.get_height(),
                ha = 'center',
                va = 'center')

它将纠正标签的垂直位置并给出: Staked bars with their values

如果您想更改标签以获取非规范化值,那么还有一些工作要做。最简单的解决方案是将附加参数values(包含非规范化值)传递给autolabel函数。代码将是:

def autolabel(rects, values):
    # Attach some text labels.
    for (rect, value) in zip(rects, values):
        ax.text(rect.get_x() + rect.get_width() / 2.,
                rect.get_y() + rect.get_height() / 2.,
                '%d'%value,
                ha = 'center',
                va = 'center')

我希望这会对你有所帮助。