使用 Python 的 Matplotlib 绘制分组条形图需要仔细考虑数据操作、条形间距和标签。以下是解决您的具体问题的方法:
import pandas as pd
import matplotlib.pyplot as plt
df = pd.DataFrame(...).div(2233)
ax = df.plot(kind='bar', color=colors, figsize=(20, 8), ylabel='Percentage', title="...")
for p in ax.patches:
ax.annotate(f'{p.get_height():0.2f}', (p.get_x() p.get_width() / 2., p.get_height()), ha='center', va='center', xytext=(0, 10), textcoords='offset points')
此代码将生成带有注释条形的分组条形图高度。
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3