Open In App

Matplotlib.axes.Axes.errorbar() in Python

Matplotlib is a library in Python and it is numerical – mathematical extension for NumPy library. The Axes Class contains most of the figure elements: Axis, Tick, Line2D, Text, Polygon, etc., and sets the coordinate system. And the instances of Axes supports callbacks through a callbacks attribute. Example: 




# Implementation of matplotlib function
     
import matplotlib.pyplot as plt
import numpy as np
   
# make an agg figure
fig, ax = plt.subplots()
 
ax.plot([1, 2, 3])
ax.set_title('matplotlib.axes.Axes.plot() example 1')
fig.canvas.draw()
 
plt.show()

Output:



matplotlib.axes.Axes.errorbar() Function

The Axes.errorbar() function in axes module of matplotlib library is used to plot y versus x as lines and/or markers with attached errorbars.

Syntax: Axes.errorbar(self, x, y, yerr=None, xerr=None, fmt=”, ecolor=None, elinewidth=None, capsize=None, barsabove=False, lolims=False, uplims=False, xlolims=False, xuplims=False, errorevery=1, capthick=None, *, data=None, **kwargs)



Parameters: This method accept the following parameters that are described below:

Returns: This returns the container and it is comprises of the following:

Below examples illustrate the matplotlib.axes.Axes.errorbar() function in matplotlib.axes: Example #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)
 
fig, ax = plt.subplots()
ax.errorbar(xval, yval, xerr = 0.4, yerr = 0.5)
plt.show()

Output: Example #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.show()

Output:


Article Tags :