Thursday, September 4, 2025
HomeLanguagesMatplotlib.axis.Axis.remove() function in Python

Matplotlib.axis.Axis.remove() function in Python

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: 
 

 

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32261 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6626 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11855 POSTS0 COMMENTS
Shaida Kate Naidoo
6747 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6695 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS