📜  Python中的 Matplotlib.pyplot.errorbar()

📅  最后修改于: 2022-05-13 01:54:45.786000             🧑  作者: Mango

Python中的 Matplotlib.pyplot.errorbar()

Matplotlib是Python中的一个库,它是 NumPy 库的数值数学扩展。 PyplotMatplotlib模块的基于状态的接口,它提供了一个类似 MATLAB 的接口。

matplotlib.pyplot.errorbar()函数:

matplotlib 库的 pyplot 模块中的errorbar()函数用于将 y 与 x 绘制为线和/或带有附加误差线的标记。

下面的示例说明了 matplotlib.pyplot 中的 matplotlib.pyplot.errorbar()函数:

示例 #1:

# Implementation of matplotlib function
import numpy as np
import matplotlib.pyplot as plt
  
# example data
xval = np.arange(0.1, 4, 0.5)
yval = np.exp(-xval)
  
plt.errorbar(xval, yval, xerr = 0.4, yerr = 0.5)
  
plt.title('matplotlib.pyplot.errorbar() function Example')
plt.show()

输出:

示例 #2:

# Implementation of matplotlib function
import numpy as np
import matplotlib.pyplot as plt
   
fig = plt.figure()
x = np.arange(10)
y = 3 * np.sin(x / 20 * np.pi)
yerr = np.linspace(0.05, 0.2, 10)
   
plt.errorbar(x, y + 7, yerr = yerr,
             label ='Line1')
plt.errorbar(x, y + 5, yerr = yerr,
             uplims = True, 
             label ='Line2')
plt.errorbar(x, y + 3, yerr = yerr, 
             uplims = True, 
             lolims = True,
             label ='Line3')
  
upperlimits = [True, False] * 5
lowerlimits = [False, True] * 5
plt.errorbar(x, y, yerr = yerr,
             uplims = upperlimits, 
             lolims = lowerlimits,
             label ='Line4')
   
plt.legend(loc ='upper left')
  
plt.title('matplotlib.pyplot.errorbar()\
function Example')
plt.show()

输出: