当前位置:主页 > 软件编程 > Python代码 >

python误差棒图errorbar()函数实例解析

时间:2022-05-03 10:56:13 | 栏目:Python代码 | 点击:

这篇文章主要介绍了python误差棒图errorbar()函数实例解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

函数功能:绘制y轴方向或是x轴方向的误差范围。

调用签名:plt.errorbar(x, y, yerr=a, xerr=b)

x:数据点的水平位置

y:数据点的垂直位置

yerr:y轴方向的数据点的误差计算方法

xerr:x轴方向的数据点的误差计算方法

代码实现:

import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(0.1, 0.6, 6)
y = np.exp(x)
plt.errorbar(x, y, fmt="bo:", yerr=0.2, xerr=0.02)
plt.xlim(0, 0.7)
plt.show()

结果

您可能感兴趣的文章:

相关文章