Matplotlib 堆叠柱状图
时间: 2023-10-27 16:30:50 浏览: 110
Matplotlib 是一个数据可视化的 Python 库,可以绘制多种图形,其中包括堆叠柱状图。堆叠柱状图可以用于比较多个组的数据在不同类别下的大小、比例和变化趋势。
下面是一个示例代码,展示如何使用 Matplotlib 绘制堆叠柱状图:
```python
import matplotlib.pyplot as plt
# 数据
labels = ['A', 'B', 'C', 'D', 'E']
men = [20, 35, 30, 35, 27]
women = [25, 32, 34, 20, 25]
# 绘图
fig, ax = plt.subplots()
ax.bar(labels, men, label='Men')
ax.bar(labels, women, bottom=men, label='Women')
# 添加标签和标题
ax.set_xlabel('Group')
ax.set_ylabel('Scores')
ax.set_title('Scores by group and gender')
ax.legend()
# 显示图像
plt.show()
```
在这个示例中,我们定义了两个组的数据,分别是 men 和 women,它们在五个类别下的得分。使用 `ax.bar` 函数来绘制柱状图,其中 `bottom` 参数指定了上一个组的数据在该组数据下的起始位置,从而实现堆叠。最后,我们添加了标签和标题,并使用 `ax.legend` 函数添加图例。运行这段代码,就可以得到如下的堆叠柱状图:
![stacked_bar_chart](https://i.imgur.com/9XDjKuN.png)
阅读全文