jupyter notebook绘制多重柱形图
时间: 2023-12-06 18:03:47 浏览: 155
以下是使用jupyter notebook绘制多重柱形图的示例代码:
```python
import matplotlib.pyplot as plt
import numpy as np
# 数据
labels = ['A', 'B', 'C', 'D', 'E']
men_means = [20, 35, 30, 35, 27]
women_means = [25, 32, 34, 20, 25]
children_means = [32, 30, 25, 28, 34]
# 设置x轴的位置
x = np.arange(len(labels))
# 设置每个柱形的宽度
width = 0.2
# 绘制多重柱形图
fig, ax = plt.subplots()
rects1 = ax.bar(x - width, men_means, width, label='Men')
rects2 = ax.bar(x, women_means, width, label='Women')
rects3 = ax.bar(x + width, children_means, width, label='Children')
# 添加标签、标题和图例
ax.set_ylabel('Scores')
ax.set_title('Scores by group and gender')
ax.set_xticks(x)
ax.set_xticklabels(labels)
ax.legend()
# 显示图形
plt.show()
```
在这个示例中,我们使用了matplotlib库来绘制多重柱形图。首先,我们定义了三个数据集:men_means、women_means和children_means,分别代表男性、女性和儿童的得分。然后,我们使用numpy库中的arange函数来设置x轴的位置,使用width变量来设置每个柱形的宽度。接下来,我们使用bar函数来绘制三个柱形图,并使用set_ylabel、set_title和set_xticklabels函数来添加标签和标题。最后,我们使用legend函数来添加图例,并使用show函数来显示图形。
阅读全文