如何向堆积百分比条形图添加注释

我想使用 matplotlib 将值添加到堆积条形图。到目前为止,我已经能够创建堆积条形图,但我对如何添加注释感到困惑。


我想要一个类似的输出,而不是整个图表,而只是中间的注释。

import pandas as pd

import seaborn as sns

import matplotlib.pyplot as plt



data = {'Range':['<10','>10', '>= 20', '<10','>10', '>= 20', '<10','>10', '>= 20'],

    'Price':[50,25,25,70,20,10,80,10,10]

    'Value':[100,50,50,140,40,20,160,20,20]}    


df1 = pd.DataFrame(data)


b1 = df1[(df1['Range'] == '<10']['Price']

b2 = df1[df1['Range'] == '>10']['Price']

b3 = df1[df1['Range'] == '>= 20']['Price']


totals = [i+j+k for i,j,k in zip(b1,b2,b3)]

greenBars = [i / j * 100 for i,j in zip(b1, totals)]

orangeBars = [i / j * 100 for i,j in zip(b2, totals)]

blueBars = [i / j * 100 for i,j in zip(b3, totals)]



barWidth = 0.5


names = ('low', 'medium', 'high')

r = [0,1,2]

plt.bar(r, greenBars, color='#b5ffb9', edgecolor='white', width=barWidth, label = '$<10')

plt.bar(r, orangeBars, bottom=greenBars, color='#f9bc86', edgecolor='white', width=barWidth, label = '$>10')

plt.bar(r, blueBars, bottom=[i+j for i,j in zip(greenBars, orangeBars)], color='#a3acff', edgecolor='white', width=barWidth, label = '$>=20')



plt.xticks(r, names)

plt.xlabel("group")


plt.legend(loc='upper left', bbox_to_anchor=(1,1), ncol=1)


plt.show()

添加了上面的代码来创建堆积图。期望的输出:


对于低类别,通过从列中提取值Value(100、50 和 50)在堆栈上添加注释


对于中值,值为 140、40 和 20。


对于高值,值为 160、20 和 20。


长风秋雁
浏览 107回答 1
1回答

DIEA

可以通过从 中提取条形位置来注释条形图ax.patches。补丁数据不包含与数据帧相对应的标签,因此关联不同的数据值集成为一个定制过程。为了用Value代替进行注释Price,需要有一种方法来关联相应的值。字典不起作用,因为有重复值为 制作一个旋转数据框Value和 的相应数据框Price。这将确保相应的数据位于同一位置。col_idx和row_idx将与 一起使用.iloc来查找 中的正确值df_value,并用它来注释绘图。col_idx和row_idx都可以在 中重置或更新if i%3 == 0,因为有 3 个条和 3 个段,但是,如果条和段的数量不同,则需要不同的重置条件。import pandas as pdimport matplotlib.pyplot as plt# create the dataframedata = {'Range':['<10','>10', '>= 20', '<10','>10', '>= 20', '<10','>10', '>= 20'],        'Price':[50,25,25,70,20,10,80,10,10],        'Value':[100,50,50,140,40,20,160,20,20]}    df1 = pd.DataFrame(data)# pivot the price datadf_price = df1.assign(idx=df1.groupby('Range').cumcount()).pivot(index='idx', columns='Range', values='Price')Range  <10  >10  >= 20idx                   0       50   25     251       70   20     102       80   10     10# pivot the value datadf_value = df1.assign(idx=df1.groupby('Range').cumcount()).pivot(index='idx', columns='Range', values='Value')Range  <10  >10  >= 20idx                   0      100   50     501      140   40     202      160   20     20# set colorscolors = ['#b5ffb9', '#f9bc86', '#a3acff']# plot the priceax = df_price.plot.bar(stacked=True, figsize=(8, 6), color=colors, ec='w')# label the x-axisplt.xticks(ticks=range(3), labels=['low', 'med', 'high'], rotation=0)# x-axis titleplt.xlabel('group')# position the legendplt.legend(bbox_to_anchor=(1.05, 1), loc='upper left')# annotate the bar segments# col and row iloc indices for df_valuecol_idx = 0row_idx = 0# iterate through each bar patch from axfor i, p in enumerate(ax.patches, 1):    left, bottom, width, height = p.get_bbox().bounds    v = df_value.iloc[row_idx, col_idx]    if width > 0:        ax.annotate(f'{v:0.0f}', xy=(left+width/2, bottom+height/2), ha='center', va='center')        # use this line to add commas for thousands#        ax.annotate(f'{v:,}', xy=(left+width/2, bottom+height/2), ha='center', va='center')        row_idx += 1    if i%3 == 0:  # there are three bars, so update the indices         col_idx += 1        row_idx = 0
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python