python画均值和方差的bar形图
时间: 2023-12-25 15:49:53 浏览: 182
python数据分析速查表
你可以使用 Matplotlib 库来画出均值和方差的 bar 图。以下是一个示例代码:
```python
import numpy as np
import matplotlib.pyplot as plt
# 生成数据
mean = [20, 35, 30, 35, 27]
variance = [5, 10, 7, 12, 6]
labels = ['A', 'B', 'C', 'D', 'E']
# 画图
x_pos = np.arange(len(labels))
plt.bar(x_pos, mean, yerr=variance, align='center', alpha=0.5)
plt.xticks(x_pos, labels)
plt.ylabel('均值')
plt.title('均值和方差')
plt.show()
```
这个代码会生成一个 bar 图,其中每个 bar 表示一个标签,高度表示对应的均值,而纵向的黑线表示对应的方差。
你可以根据自己的数据需求修改代码中的 `mean`、`variance` 和 `labels` 数组来绘制不同的图形。
阅读全文