python绘制条形图的误差棒
时间: 2023-09-28 09:07:50 浏览: 127
可直接运行 基于Python numpy matplotlib 误差条形图的绘制 运行后直接出图 含PDF图像文件.rar
Python绘制条形图的误差棒可以使用Matplotlib库中的errorbar函数实现。下面是一个示例代码:
```python
import matplotlib.pyplot as plt
import numpy as np
# 创建数据
x = np.array([1, 2, 3, 4, 5])
y = np.array([5, 7, 9, 8, 6])
error = np.array([0.5, 0.7, 0.6, 0.4, 0.8])
# 绘制条形图
plt.bar(x, y, yerr=error, capsize=5)
# 设置坐标轴标签和标题
plt.xlabel('X Label')
plt.ylabel('Y Label')
plt.title('Bar Chart with Error Bars')
# 显示图形
plt.show()
```
在代码中,使用numpy库创建了x、y和error三个数组,分别表示条形图的x轴、y轴和误差。然后使用Matplotlib库中的bar函数绘制条形图,并通过yerr参数指定了误差棒的大小,通过capsize参数指定了误差棒的端点大小。最后设置了坐标轴标签和标题,并使用show函数显示图形。
阅读全文