Matplotlib.pyplot.axes() in Python (original) (raw)

Last Updated : 17 May, 2020

Pyplot is another module of matplotlib that enables users to integrate MATLAB within Python environment, and thus providing MATLAB like interface and making Python visually interactive.

Matplotlib.pyplot.axes()

pyplot.axes is a function of the matplotlib library that adds axes to the current graph and makes it as current axes. Its output depends on the arguments used.

Syntax: matplotlib.pyplot.axes(*args, **kwargs)

Parameters:
*args: It may include either None(nothing) or 4 tuples of float type

**kwargs: There are several keyword arguments(kwargs) used as parameters to pyplot.axes(), most common include facecolor, gid, in_layout, label, position, xlim, ylim, etc.

Example 1:

import matplotlib.pyplot as plt

x = [ 8 , 5 , 11 , 13 , 16 , 23 ]

y = [ 14 , 8 , 21 , 7 , 12 , 15 ]

plt.plot(x, y)

plt.axes()

Output:

Example 2:

import matplotlib.pyplot as plt

x = [ 8 , 5 , 11 , 13 , 16 , 23 ]

y = [ 14 , 8 , 21 , 7 , 12 , 15 ]

plt.axes([ 0 , 2.0 , 2.0 , 2.0 ], facecolor = 'black' )

Output:

python-matplotlib-axes-2

Similar Reads