Matplotlib is a library in Python and it is numerical – mathematical extension for NumPy library. It is an amazing visualization library in Python for 2D plots of arrays and used for working with the broader SciPy stack.
Matplotlib.axis.Axis.remove() Function
The Axis.remove() function in axis module of matplotlib library is used to remove the artist from the figure if possible.
Syntax: Axis.remove(self)
Parameters: This method does not accepts any parameter.
Return value: This method return the figure after removal of the artist.
Below examples illustrate the matplotlib.axis.Axis.remove() function in matplotlib.axis:
Example 1:
Python3
# Implementation of matplotlib function from matplotlib.axis import Axis import matplotlib.pyplot as plt fig, axs = plt.subplots() axs.plot([ 1 , 2 , 3 ]) # use of remove() method Axis.remove(axs) fig.suptitle('matplotlib.axis.Axis.remove() \ function Example\n', fontweight = "bold" ) plt.show() |
Output:
Example 2:
Python3
# Implementation of matplotlib function from matplotlib.axis import Axis import matplotlib.pyplot as plt fig, (axs, axs2) = plt.subplots( 2 , 1 ) gs = axs2.get_gridspec() # use of remove() method Axis.remove(axs) axbig = fig.add_subplot(gs[ 1 :, - 1 ]) axbig.annotate( "Removed one Axes" , ( 0.4 , 0.5 ), xycoords = 'axes fraction' , va = 'center' ) fig.suptitle('matplotlib.axis.Axis.remove() \ function Example\n', fontweight = "bold" ) plt.show() |
Output: