在熊猫条形图中每个子组的条之间添加空格

问题描述 投票:0回答:1

我有一个这样的数据框:

    chart = pd.DataFrame({'test1_bottom': {'Information Technology': 0.2533668392286677,
  'Health Care': 0.15018887027604233,
  'Financials': 0.11250374171121448,
  'Communication Services': 0.10598698851685082,
  'Consumer Discretionary': 0.09930980115655588,
  'Industrials': 0.08341663798744221,
  'Consumer Staples': 0.077755633372036,
  'Utilities': 0.03633802369644037,
  'Real Estate': 0.030599694393051324,
  'Energy': 0.026211182457138587},
 'test1_top': {'Information Technology': 0.2533668392286677,
  'Health Care': 0.15018887027604233,
  'Financials': 0.11250374171121448,
  'Communication Services': 0.10598698851685082,
  'Consumer Discretionary': 0.09930980115655588,
  'Industrials': 0.08341663798744221,
  'Consumer Staples': 0.077755633372036,
  'Utilities': 0.03633802369644037,
  'Real Estate': 0.030599694393051324,
  'Energy': 0.026211182457138587}})

我正在尝试在每个子组的条形之间添加空格,因为我在每个条形上的值标签都重叠:

figsize=(9,4)
ax = chart.iloc[::-1].plot.barh(figsize=figsize, color=['#0574A0','#FF5233'],width=0.5);
for p in ax.patches:
    v = ax.annotate("{:,.2%}".format(p.get_width()), (p.get_width(), p.get_y() + p.get_height()/4), xytext=(4, -1), 
                textcoords='offset points',ha='left');
plt.legend(loc='lower right',fontsize=10)
plt.tight_layout(pad=-5)

我正在尝试在上方的红色和绿色条之间添加一个小的空间。谢谢您可以看到生成的图:enter image description here

pandas matplotlib bar-chart
1个回答
0
投票
您可以进行一些手动绘制和对齐:

# set up figure fig, ax = plt.subplots(figsize=(10,6)) y=np.arange(len(chart)) # height of bar and gap height = 0.4 gap = 0.02 # plot with plt.barh for offset, col in zip([-1,1], chart.columns): plt.barh(y + offset * (height+gap)/2, chart[col], height=height, label=col) for p in ax.patches: v = ax.annotate("{:,.2%}".format(p.get_width()), (p.get_width(), p.get_y() + p.get_height()/4), xytext=(4, -1), textcoords='offset points',ha='left'); plt.legend(loc='lower right',fontsize=10) plt.tight_layout(pad=-5) # invert the yaxis so you don't need [::-1] ax.invert_yaxis() # force yticks plt.yticks(y, chart.index) plt.show()

输出:

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.